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