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