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