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