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