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