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