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