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