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