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