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