C:
char c = '\u00D2';
printf("%c\n", c); // Output: Ò
JavaScript:
const char = '\u00D2';
console.log(char); // Output: Ò
Java:
char c = '\u00D2';
System.out.println(c); // Output: Ò
JSON:
{"text": "\u00D2"} // Value: Ò
Python:
char = '\u00D2'
print(char) # Output: Ò
Perl:
my $char = "\x{00D2}";
print $char; # Output: Ò
PHP:
$char = "\x{00D2}";
echo $char; // Output: Ò
Ruby:
char = "\u{00D2}"
puts char # Output: Ò
Rust:
let c = '\u{D2}';
println!("{}", c); // Output: Ò
Go:
char := '\u00D2'
fmt.Printf("%c\n", char) // Output: Ò
CSS:
/* CSS content property */
.element::before {
content: "\0000D2"; /* 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%92
MD5:
81e806d4ed7499dabe1eb857cc72ea00
SHA1:
baee665eb3d14cf5c9e82b5f3e59f602191cd5c3
Base64:
w5I=