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