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