C:
char c = '\u0150';
printf("%c\n", c); // Output: Ő
JavaScript:
const char = '\u0150';
console.log(char); // Output: Ő
Java:
char c = '\u0150';
System.out.println(c); // Output: Ő
JSON:
{"text": "\u0150"} // Value: Ő
Python:
char = '\u0150'
print(char) # Output: Ő
Perl:
my $char = "\x{0150}";
print $char; # Output: Ő
PHP:
$char = "\x{0150}";
echo $char; // Output: Ő
Ruby:
char = "\u{0150}"
puts char # Output: Ő
Rust:
let c = '\u{150}';
println!("{}", c); // Output: Ő
Go:
char := '\u0150'
fmt.Printf("%c\n", char) // Output: Ő
CSS:
/* CSS content property */
.element::before {
content: "\000150"; /* 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=%C5%90
MD5:
ff77bb2a8dbd92f681b55f4eaac0c8b7
SHA1:
e1249ff44fb7bb1a4fc0533a5f6e9557f0c8bad1
Base64:
xZA=