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