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