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