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