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