C:
char c = '\u00DA';
printf("%c\n", c); // Output: Ú
JavaScript:
const char = '\u00DA';
console.log(char); // Output: Ú
Java:
char c = '\u00DA';
System.out.println(c); // Output: Ú
JSON:
{"text": "\u00DA"} // Value: Ú
Python:
char = '\u00DA'
print(char) # Output: Ú
Perl:
my $char = "\x{00DA}";
print $char; # Output: Ú
PHP:
$char = "\x{00DA}";
echo $char; // Output: Ú
Ruby:
char = "\u{00DA}"
puts char # Output: Ú
Rust:
let c = '\u{DA}';
println!("{}", c); // Output: Ú
Go:
char := '\u00DA'
fmt.Printf("%c\n", char) // Output: Ú
CSS:
/* CSS content property */
.element::before {
content: "\0000DA"; /* 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=%C3%9A
MD5:
69741b42a27e2428ccece3721a264030
SHA1:
be3f421ab82753872af5726ea2038fa208607f2b
Base64:
w5o=