C:
char c = '\u0170';
printf("%c\n", c); // Output: Ű
JavaScript:
const char = '\u0170';
console.log(char); // Output: Ű
Java:
char c = '\u0170';
System.out.println(c); // Output: Ű
JSON:
{"text": "\u0170"} // Value: Ű
Python:
char = '\u0170'
print(char) # Output: Ű
Perl:
my $char = "\x{0170}";
print $char; # Output: Ű
PHP:
$char = "\x{0170}";
echo $char; // Output: Ű
Ruby:
char = "\u{0170}"
puts char # Output: Ű
Rust:
let c = '\u{170}';
println!("{}", c); // Output: Ű
Go:
char := '\u0170'
fmt.Printf("%c\n", char) // Output: Ű
CSS:
/* CSS content property */
.element::before {
content: "\000170"; /* 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%B0
MD5:
4afbf347af4d70e128ac275b81d659c4
SHA1:
5fab3cae1f7b9b38f99c24705d7ebca78088841c
Base64:
xbA=