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