C:
char c = '\u04E9';
printf("%c\n", c); // Output: ө
JavaScript:
const char = '\u04E9';
console.log(char); // Output: ө
Java:
char c = '\u04E9';
System.out.println(c); // Output: ө
JSON:
{"text": "\u04E9"} // Value: ө
Python:
char = '\u04E9'
print(char) # Output: ө
Perl:
my $char = "\x{04E9}";
print $char; # Output: ө
PHP:
$char = "\x{04E9}";
echo $char; // Output: ө
Ruby:
char = "\u{04E9}"
puts char # Output: ө
Rust:
let c = '\u{4E9}';
println!("{}", c); // Output: ө
Go:
char := '\u04E9'
fmt.Printf("%c\n", char) // Output: ө
CSS:
/* CSS content property */
.element::before {
content: "\0004E9"; /* 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=%D3%A9
MD5:
b9d93bad1ed45fdc87a4c6c0a7ad1e9b
SHA1:
e430bf4151c3dafb0664bc669c74e7272b187415
Base64:
06k=