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