C:
char c = '\u1720';
printf("%c\n", c); // Output: ᜠ
JavaScript:
const char = '\u1720';
console.log(char); // Output: ᜠ
Java:
char c = '\u1720';
System.out.println(c); // Output: ᜠ
JSON:
{"text": "\u1720"} // Value: ᜠ
Python:
char = '\u1720'
print(char) # Output: ᜠ
Perl:
my $char = "\x{1720}";
print $char; # Output: ᜠ
PHP:
$char = "\x{1720}";
echo $char; // Output: ᜠ
Ruby:
char = "\u{1720}"
puts char # Output: ᜠ
Rust:
let c = '\u{1720}';
println!("{}", c); // Output: ᜠ
Go:
char := '\u1720'
fmt.Printf("%c\n", char) // Output: ᜠ
CSS:
/* CSS content property */
.element::before {
content: "\001720"; /* 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%9C%A0
MD5:
87e8468374f6fd1a30cd0d41c8820560
SHA1:
646e1c6177a97f37c52d290c8f6f35c8b381d7a1
Base64:
4Zyg