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