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