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