C:
char c = '\u1896';
printf("%c\n", c); // Output: ᢖ
JavaScript:
const char = '\u1896';
console.log(char); // Output: ᢖ
Java:
char c = '\u1896';
System.out.println(c); // Output: ᢖ
JSON:
{"text": "\u1896"} // Value: ᢖ
Python:
char = '\u1896'
print(char) # Output: ᢖ
Perl:
my $char = "\x{1896}";
print $char; # Output: ᢖ
PHP:
$char = "\x{1896}";
echo $char; // Output: ᢖ
Ruby:
char = "\u{1896}"
puts char # Output: ᢖ
Rust:
let c = '\u{1896}';
println!("{}", c); // Output: ᢖ
Go:
char := '\u1896'
fmt.Printf("%c\n", char) // Output: ᢖ
CSS:
/* CSS content property */
.element::before {
content: "\001896"; /* 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%A2%96
MD5:
76f1f350acd5c6a05d7ff66dc3e232e1
SHA1:
ccde15b669eac3442f67329e6dc3ee621494cb90
Base64:
4aKW