C:
char c = '\u1590';
printf("%c\n", c); // Output: ᖐ
JavaScript:
const char = '\u1590';
console.log(char); // Output: ᖐ
Java:
char c = '\u1590';
System.out.println(c); // Output: ᖐ
JSON:
{"text": "\u1590"} // Value: ᖐ
Python:
char = '\u1590'
print(char) # Output: ᖐ
Perl:
my $char = "\x{1590}";
print $char; # Output: ᖐ
PHP:
$char = "\x{1590}";
echo $char; // Output: ᖐ
Ruby:
char = "\u{1590}"
puts char # Output: ᖐ
Rust:
let c = '\u{1590}';
println!("{}", c); // Output: ᖐ
Go:
char := '\u1590'
fmt.Printf("%c\n", char) // Output: ᖐ
CSS:
/* CSS content property */
.element::before {
content: "\001590"; /* 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%90
MD5:
05df847712340da0f3e0d381c43ebaeb
SHA1:
d7b60587d220408fd2f0036aa3aa7e9899f80ea4
Base64:
4ZaQ