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