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