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