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