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