C:
char c = '\u1908';
printf("%c\n", c); // Output: ᤈ
JavaScript:
const char = '\u1908';
console.log(char); // Output: ᤈ
Java:
char c = '\u1908';
System.out.println(c); // Output: ᤈ
JSON:
{"text": "\u1908"} // Value: ᤈ
Python:
char = '\u1908'
print(char) # Output: ᤈ
Perl:
my $char = "\x{1908}";
print $char; # Output: ᤈ
PHP:
$char = "\x{1908}";
echo $char; // Output: ᤈ
Ruby:
char = "\u{1908}"
puts char # Output: ᤈ
Rust:
let c = '\u{1908}';
println!("{}", c); // Output: ᤈ
Go:
char := '\u1908'
fmt.Printf("%c\n", char) // Output: ᤈ
CSS:
/* CSS content property */
.element::before {
content: "\001908"; /* 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%A4%88
MD5:
0f6508b98af096e5e06750051fda8ba5
SHA1:
949aa80d1f84257bc52280d7bb2c4d6aa94bb6d8
Base64:
4aSI