C:
char c = '\u1C44';
printf("%c\n", c); // Output: ᱄
JavaScript:
const char = '\u1C44';
console.log(char); // Output: ᱄
Java:
char c = '\u1C44';
System.out.println(c); // Output: ᱄
JSON:
{"text": "\u1C44"} // Value: ᱄
Python:
char = '\u1C44'
print(char) # Output: ᱄
Perl:
my $char = "\x{1C44}";
print $char; # Output: ᱄
PHP:
$char = "\x{1C44}";
echo $char; // Output: ᱄
Ruby:
char = "\u{1C44}"
puts char # Output: ᱄
Rust:
let c = '\u{1C44}';
println!("{}", c); // Output: ᱄
Go:
char := '\u1C44'
fmt.Printf("%c\n", char) // Output: ᱄
CSS:
/* CSS content property */
.element::before {
content: "\001C44"; /* 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%B1%84
MD5:
b87fbd59cbb37ae6615405fb275e8e93
SHA1:
7cf02986ae051782d9ba9e7625ece2af40a2fd07
Base64:
4bGE