C:
char c = '\u1ED7';
printf("%c\n", c); // Output: ỗ
JavaScript:
const char = '\u1ED7';
console.log(char); // Output: ỗ
Java:
char c = '\u1ED7';
System.out.println(c); // Output: ỗ
JSON:
{"text": "\u1ED7"} // Value: ỗ
Python:
char = '\u1ED7'
print(char) # Output: ỗ
Perl:
my $char = "\x{1ED7}";
print $char; # Output: ỗ
PHP:
$char = "\x{1ED7}";
echo $char; // Output: ỗ
Ruby:
char = "\u{1ED7}"
puts char # Output: ỗ
Rust:
let c = '\u{1ED7}';
println!("{}", c); // Output: ỗ
Go:
char := '\u1ED7'
fmt.Printf("%c\n", char) // Output: ỗ
CSS:
/* CSS content property */
.element::before {
content: "\001ED7"; /* 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=%E1%BB%97
MD5:
27804c1111172ee76577a19521760db0
SHA1:
6c1452ff811b1491d178c2a4ebd68e5050421055
Base64:
4buX