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