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