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