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