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