C:
char c = '\uA544';
printf("%c\n", c); // Output: ꕄ
JavaScript:
const char = '\uA544';
console.log(char); // Output: ꕄ
Java:
char c = '\uA544';
System.out.println(c); // Output: ꕄ
JSON:
{"text": "\uA544"} // Value: ꕄ
Python:
char = '\uA544'
print(char) # Output: ꕄ
Perl:
my $char = "\x{A544}";
print $char; # Output: ꕄ
PHP:
$char = "\x{A544}";
echo $char; // Output: ꕄ
Ruby:
char = "\u{A544}"
puts char # Output: ꕄ
Rust:
let c = '\u{A544}';
println!("{}", c); // Output: ꕄ
Go:
char := '\uA544'
fmt.Printf("%c\n", char) // Output: ꕄ
CSS:
/* CSS content property */
.element::before {
content: "\00A544"; /* 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%84
MD5:
39e4b6b772a4519feda332fddccba54e
SHA1:
3936e5629e1e8608acbce962cd92d59c6a5f085f
Base64:
6pWE