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