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