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