C:
char c = '\u1664';
printf("%c\n", c); // Output: ᙤ
JavaScript:
const char = '\u1664';
console.log(char); // Output: ᙤ
Java:
char c = '\u1664';
System.out.println(c); // Output: ᙤ
JSON:
{"text": "\u1664"} // Value: ᙤ
Python:
char = '\u1664'
print(char) # Output: ᙤ
Perl:
my $char = "\x{1664}";
print $char; # Output: ᙤ
PHP:
$char = "\x{1664}";
echo $char; // Output: ᙤ
Ruby:
char = "\u{1664}"
puts char # Output: ᙤ
Rust:
let c = '\u{1664}';
println!("{}", c); // Output: ᙤ
Go:
char := '\u1664'
fmt.Printf("%c\n", char) // Output: ᙤ
CSS:
/* CSS content property */
.element::before {
content: "\001664"; /* 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%99%A4
MD5:
edf83bb3f18edc89eee583779485d669
SHA1:
c533132a6d6af12b7999730dfa72be7648fb54fd
Base64:
4Zmk