C:
char c = '\u0171';
printf("%c\n", c); // Output: ű
JavaScript:
const char = '\u0171';
console.log(char); // Output: ű
Java:
char c = '\u0171';
System.out.println(c); // Output: ű
JSON:
{"text": "\u0171"} // Value: ű
Python:
char = '\u0171'
print(char) # Output: ű
Perl:
my $char = "\x{0171}";
print $char; # Output: ű
PHP:
$char = "\x{0171}";
echo $char; // Output: ű
Ruby:
char = "\u{0171}"
puts char # Output: ű
Rust:
let c = '\u{171}';
println!("{}", c); // Output: ű
Go:
char := '\u0171'
fmt.Printf("%c\n", char) // Output: ű
CSS:
/* CSS content property */
.element::before {
content: "\000171"; /* 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%B1
MD5:
070faa5111f91c02291b89ab74a34d30
SHA1:
1ceddb94db3302ecb640e1cf54c1db046ed2e3de
Base64:
xbE=