C:
char c = '\u1891';
printf("%c\n", c); // Output: ᢑ
JavaScript:
const char = '\u1891';
console.log(char); // Output: ᢑ
Java:
char c = '\u1891';
System.out.println(c); // Output: ᢑ
JSON:
{"text": "\u1891"} // Value: ᢑ
Python:
char = '\u1891'
print(char) # Output: ᢑ
Perl:
my $char = "\x{1891}";
print $char; # Output: ᢑ
PHP:
$char = "\x{1891}";
echo $char; // Output: ᢑ
Ruby:
char = "\u{1891}"
puts char # Output: ᢑ
Rust:
let c = '\u{1891}';
println!("{}", c); // Output: ᢑ
Go:
char := '\u1891'
fmt.Printf("%c\n", char) // Output: ᢑ
CSS:
/* CSS content property */
.element::before {
content: "\001891"; /* 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%91
MD5:
385c5a24fa706967e8a61093bca612b9
SHA1:
c60346b5e33d8f0ad4fd21ddd4080916b0460c47
Base64:
4aKR