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