C:
char c = '\uA597';
printf("%c\n", c); // Output: ꖗ
JavaScript:
const char = '\uA597';
console.log(char); // Output: ꖗ
Java:
char c = '\uA597';
System.out.println(c); // Output: ꖗ
JSON:
{"text": "\uA597"} // Value: ꖗ
Python:
char = '\uA597'
print(char) # Output: ꖗ
Perl:
my $char = "\x{A597}";
print $char; # Output: ꖗ
PHP:
$char = "\x{A597}";
echo $char; // Output: ꖗ
Ruby:
char = "\u{A597}"
puts char # Output: ꖗ
Rust:
let c = '\u{A597}';
println!("{}", c); // Output: ꖗ
Go:
char := '\uA597'
fmt.Printf("%c\n", char) // Output: ꖗ
CSS:
/* CSS content property */
.element::before {
content: "\00A597"; /* 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%97
MD5:
3095779a71f2164a357614df2f8629d1
SHA1:
d22c5f54243b30214f37ad97b7df184d6c464766
Base64:
6paX