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