C:
char c = '\u006F';
printf("%c\n", c); // Output: o
JavaScript:
const char = '\u006F';
console.log(char); // Output: o
Java:
char c = '\u006F';
System.out.println(c); // Output: o
JSON:
{"text": "\u006F"} // Value: o
Python:
char = '\u006F'
print(char) # Output: o
Perl:
my $char = "\x{006F}";
print $char; # Output: o
PHP:
$char = "\x{006F}";
echo $char; // Output: o
Ruby:
char = "\u{006F}"
puts char # Output: o
Rust:
let c = '\u{6F}';
println!("{}", c); // Output: o
Go:
char := '\u006F'
fmt.Printf("%c\n", char) // Output: o
CSS:
/* CSS content property */
.element::before {
content: "\00006F"; /* Display: o */
}
HTML Decimal:
<p>HTML decimal: o</p> <!-- Display: o -->
HTML Hexadecimal:
<p>HTML hex: o</p> <!-- Display: o -->
URL Encoding:
// o URL encoding
https://unicodefinder.com/search.php?query=o
MD5:
d95679752134a2d9eb61dbd7b91c4bcc
SHA1:
7a81af3e591ac713f81ea1efe93dcf36157d8376
Base64:
bw==