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