C:
char c = '\uA594';
printf("%c\n", c); // Output: ꖔ
JavaScript:
const char = '\uA594';
console.log(char); // Output: ꖔ
Java:
char c = '\uA594';
System.out.println(c); // Output: ꖔ
JSON:
{"text": "\uA594"} // Value: ꖔ
Python:
char = '\uA594'
print(char) # Output: ꖔ
Perl:
my $char = "\x{A594}";
print $char; # Output: ꖔ
PHP:
$char = "\x{A594}";
echo $char; // Output: ꖔ
Ruby:
char = "\u{A594}"
puts char # Output: ꖔ
Rust:
let c = '\u{A594}';
println!("{}", c); // Output: ꖔ
Go:
char := '\uA594'
fmt.Printf("%c\n", char) // Output: ꖔ
CSS:
/* CSS content property */
.element::before {
content: "\00A594"; /* 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=%EA%96%94
MD5:
91d7c12c84c5a874300791d170a6c289
SHA1:
fc753744fe2c4061de9d465a58e9def58c25115c
Base64:
6paU