C:
char c = '\u01DB';
printf("%c\n", c); // Output: Ǜ
JavaScript:
const char = '\u01DB';
console.log(char); // Output: Ǜ
Java:
char c = '\u01DB';
System.out.println(c); // Output: Ǜ
JSON:
{"text": "\u01DB"} // Value: Ǜ
Python:
char = '\u01DB'
print(char) # Output: Ǜ
Perl:
my $char = "\x{01DB}";
print $char; # Output: Ǜ
PHP:
$char = "\x{01DB}";
echo $char; // Output: Ǜ
Ruby:
char = "\u{01DB}"
puts char # Output: Ǜ
Rust:
let c = '\u{1DB}';
println!("{}", c); // Output: Ǜ
Go:
char := '\u01DB'
fmt.Printf("%c\n", char) // Output: Ǜ
CSS:
/* CSS content property */
.element::before {
content: "\0001DB"; /* 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=%C7%9B
MD5:
63b4b4147ff9e8c8249bc32877c5bafe
SHA1:
f2b823bfcf61d5c04bd1d839321fa4e360d307f3
Base64:
x5s=