C:
char c = '\u1894';
printf("%c\n", c); // Output: ᢔ
JavaScript:
const char = '\u1894';
console.log(char); // Output: ᢔ
Java:
char c = '\u1894';
System.out.println(c); // Output: ᢔ
JSON:
{"text": "\u1894"} // Value: ᢔ
Python:
char = '\u1894'
print(char) # Output: ᢔ
Perl:
my $char = "\x{1894}";
print $char; # Output: ᢔ
PHP:
$char = "\x{1894}";
echo $char; // Output: ᢔ
Ruby:
char = "\u{1894}"
puts char # Output: ᢔ
Rust:
let c = '\u{1894}';
println!("{}", c); // Output: ᢔ
Go:
char := '\u1894'
fmt.Printf("%c\n", char) // Output: ᢔ
CSS:
/* CSS content property */
.element::before {
content: "\001894"; /* 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%94
MD5:
59f0117737cc1857b44d08f8a824a3c5
SHA1:
a7c73d3314876429878fd62eef455c10e6fc9ca7
Base64:
4aKU