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