C:
char c = '\u1640';
printf("%c\n", c); // Output: ᙀ
JavaScript:
const char = '\u1640';
console.log(char); // Output: ᙀ
Java:
char c = '\u1640';
System.out.println(c); // Output: ᙀ
JSON:
{"text": "\u1640"} // Value: ᙀ
Python:
char = '\u1640'
print(char) # Output: ᙀ
Perl:
my $char = "\x{1640}";
print $char; # Output: ᙀ
PHP:
$char = "\x{1640}";
echo $char; // Output: ᙀ
Ruby:
char = "\u{1640}"
puts char # Output: ᙀ
Rust:
let c = '\u{1640}';
println!("{}", c); // Output: ᙀ
Go:
char := '\u1640'
fmt.Printf("%c\n", char) // Output: ᙀ
CSS:
/* CSS content property */
.element::before {
content: "\001640"; /* 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%80
MD5:
37ea63e3dab7273d47c8181aae1f5dd0
SHA1:
208fe6e61d680abf45e62289ef0ed1ea701e5dea
Base64:
4ZmA