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