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