C:
char c = '\u1508';
printf("%c\n", c); // Output: ᔈ
JavaScript:
const char = '\u1508';
console.log(char); // Output: ᔈ
Java:
char c = '\u1508';
System.out.println(c); // Output: ᔈ
JSON:
{"text": "\u1508"} // Value: ᔈ
Python:
char = '\u1508'
print(char) # Output: ᔈ
Perl:
my $char = "\x{1508}";
print $char; # Output: ᔈ
PHP:
$char = "\x{1508}";
echo $char; // Output: ᔈ
Ruby:
char = "\u{1508}"
puts char # Output: ᔈ
Rust:
let c = '\u{1508}';
println!("{}", c); // Output: ᔈ
Go:
char := '\u1508'
fmt.Printf("%c\n", char) // Output: ᔈ
CSS:
/* CSS content property */
.element::before {
content: "\001508"; /* 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%94%88
MD5:
a493204f4d34f9ab370b1484697b4efc
SHA1:
197e3dcd2bcce33bcf55ef65fd610d2415cf468c
Base64:
4ZSI