C:
char c = '\u0151';
printf("%c\n", c); // Output: ő
JavaScript:
const char = '\u0151';
console.log(char); // Output: ő
Java:
char c = '\u0151';
System.out.println(c); // Output: ő
JSON:
{"text": "\u0151"} // Value: ő
Python:
char = '\u0151'
print(char) # Output: ő
Perl:
my $char = "\x{0151}";
print $char; # Output: ő
PHP:
$char = "\x{0151}";
echo $char; // Output: ő
Ruby:
char = "\u{0151}"
puts char # Output: ő
Rust:
let c = '\u{151}';
println!("{}", c); // Output: ő
Go:
char := '\u0151'
fmt.Printf("%c\n", char) // Output: ő
CSS:
/* CSS content property */
.element::before {
content: "\000151"; /* 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%91
MD5:
4434a565df64667ea0fdd94db0a539db
SHA1:
d05a61008482a31fb770b0fc28990dca4f10a4db
Base64:
xZE=