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