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