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