16
Off-topic / Re:Un poco de humor
« en: 07 de Febrero de 2013, 02:24:28 pm »
jojo, que buenos...
|
Esta sección te permite ver todos los posts escritos por este usuario. Ten en cuenta que sólo puedes ver los posts escritos en zonas a las que tienes acceso en este momento.
Es que ascii esta definido solo desde 0 a 127. Lo otros son extensiones, que muchos han aprobechado para poner sus propios caracteres y de ahí los codepages.
http://www.jimprice.com/jim-asc.shtmlCitarQ: What are the ASCII codes for things like the degrees symbol (°), the trademark symbol, solid blocks and other special symbols?
A: The answer is "it depends". There's really not an ASCII character for most of the special characters (other than those shown in the table at the top of this page. However, there are different extended ASCII sets that include a lot more special characters. (See IBM PC Extended ASCII, below.) Also, for information about including special symbols on a web page, you might look at some of the other charts and references, below.
#include <cstring>
#include <iostream>
using namespace std;
int main(void){
unsigned char a = '¿';
cout <<"El caracter a es "<<a<<endl;
return 0;
}