C:
char c = '\u00F3';
printf("%c\n", c); // Output: ó
JavaScript:
const char = '\u00F3';
console.log(char); // Output: ó
Java:
char c = '\u00F3';
System.out.println(c); // Output: ó
JSON:
{"text": "\u00F3"} // Value: ó
Python:
char = '\u00F3'
print(char) # Output: ó
Perl:
my $char = "\x{00F3}";
print $char; # Output: ó
PHP:
$char = "\x{00F3}";
echo $char; // Output: ó
Ruby:
char = "\u{00F3}"
puts char # Output: ó
Rust:
let c = '\u{F3}';
println!("{}", c); // Output: ó
Go:
char := '\u00F3'
fmt.Printf("%c\n", char) // Output: ó
CSS:
/* CSS content property */
.element::before {
content: "\0000F3"; /* Display: ó */
}
HTML Decimal:
<p>HTML decimal: ó</p> <!-- Display: ó -->
HTML Hexadecimal:
<p>HTML hex: ó</p> <!-- Display: ó -->
URL Encoding:
// ó URL encoding
https://unicodefinder.com/search.php?query=%C3%B3
MD5:
5ab838a6f466a5fe1ddbc08340cc21f1
SHA1:
a6abd767c025f163792b3f6d1fec94a731abce06
Base64:
w7M=