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