- Click the UPLOAD FILES button and select up to 20 HTML files or ZIP archives containing HTML, images and stylesheets. Wait for the conversion process to finish and download files either one by one, using thumbnails, or in a ZIP archive.
- Si no fuese por el codigo binario seguro que nadie de nosotros estaria aqui, atent@ a una pantalla que nos muestra archivos de texto,proyecciones visuales, ejercicios de audio y miles de distintas propuestas de creacion encriptada, en esa imprimacion en casiterita que caracteriza a la informatica actual.
Convertir cualquier sistema numérico (binario, octal, Hexadecimal) a decimal y viceversa
SistemaConversion.cs
Traductor De Codigo Binario
Telerik Code Converter by Progress is free online code converter from C# to VB and from VB to C#. No registration required. Useful, free online tool that converts ASCII codes to readable text. No ads, nonsense or garbage, just an ASCII converter. Press button, get result. Convert into ASCII. Image file: Image width: (1-500) characters: Text color: Background: Invert image: Extra contrast: For help on using the converter, see the help.
usingSystem; |
usingSystem.Collections.Generic; |
usingSystem.Linq; |
usingSystem.Text; |
namespaceConversion |
{ |
classMetodos |
{ |
#regionConvirtiendo de Decimal a Hexadecimal |
privatecharletras(intnumero) |
{ |
if (numero<=9) |
returnConvert.ToChar(numero.ToString()); |
elseif (numero10) |
return'A'; |
elseif (numero11) |
return'B'; |
elseif (numero12) |
return'C'; |
elseif (numero13) |
return'D'; |
elseif (numero14) |
return'E'; |
else |
return'F'; |
} |
privatestringreversa(stringtexto) |
{ |
stringresultado=''; |
foreach (charcintexto) |
resultado=c+resultado; |
returnresultado; |
} |
publicstringdecAtodo(intnumero, shortsistema) |
{ |
if (sistema<2) |
return'Error'; |
stringresultado=''; |
intauxiliar, residuo; |
while (true) |
{ |
auxiliar=numero; |
numero/=sistema; |
residuo=auxiliar%sistema; |
resultado+=letras(residuo); |
if (numero<=1) |
{ |
if (numero1&&sistema!=2) |
resultado+=letras(numero); |
elseif (numero<=1&&sistema2) |
resultado+=letras(numero); |
break; |
} |
} |
returnreversa(resultado); |
} |
#endregion |
#regionConvirtiendo de Hexadecimal a Decimal |
privateshortnumeros(stringletra) |
{ |
if (char.IsDigit(letra[0])) |
returnConvert.ToInt16(letra); |
elseif (letra'A') |
return10; |
elseif (letra'B') |
return11; |
elseif (letra'C') |
return12; |
elseif (letra'D') |
return13; |
elseif (letra'E') |
return14; |
else |
return15; |
} |
publicinttodoAdec(stringtexto, shortsistema) |
{ |
texto=reversa(texto); |
doubleresultado=0; |
for (intc=0; c<texto.Length; c++) |
{ |
stringtruco=''+texto[c]; |
resultado+=Math.Pow(sistema, c) *numeros(truco); |
} |
returnConvert.ToInt32(resultado); |
} |
#endregion |
} |
} |
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
textobinario.py
# Autor: Mario Abarca |
# Fecha: 29 nov. 2017 |
# Lenguaje: Python 3.6 |
fromcmdimportCmd |
classTextoBinarioApp(Cmd): |
def__init__(mi): |
super().__init__() |
mi.codigo='utf8' |
defdo_codigo(mi, argumento): |
'Fija el código (ascii, utf8, etc.) que se usa para ' |
'codificar/decodificar.' |
codigo=argumento.strip() |
try: |
bytearray(', codigo) |
exceptLookupError: |
print('**Código desconocido.') |
else: mi.codigo=codigo |
defdo_codificar(mi, argumento): |
'Codifica un texto en binario.' |
try: |
octetos=bytearray(argumento, mi.codigo) |
except: |
print(f'**No se puede codificar en {mi.codigo}.') |
else: print(' '.join(f'{x:b}'.rjust(8, '0') forxinoctetos)) |
defdo_decodificar(mi, argumento): |
'Decodifica un texto en binario.' |
try: |
octetos=bytearray(int(x, 2) forxinargumento.split()) |
except: |
print('**No es una cadena binaria.') |
returnNone |
try: |
print(octetos.decode(encoding=mi.codigo)) |
except: print(f'**No es una cadena codificada en {mi.codigo}') |
defdo_salir(mi, arg): |
'Salir del programa.' |
returnTrue |
app=TextoBinarioApp() |
app.cmdloop() |
Download Converter Codigo Binario Para Texto Freepik
commented Nov 30, 2017
Download Converter Codigo Binario Para Texto Free Fire
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment