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