C:
char c = '\uA3F0';
printf("%c\n", c); // Output: ꏰ
JavaScript:
const char = '\uA3F0';
console.log(char); // Output: ꏰ
Java:
char c = '\uA3F0';
System.out.println(c); // Output: ꏰ
JSON:
{"text": "\uA3F0"} // Value: ꏰ
Python:
char = '\uA3F0'
print(char) # Output: ꏰ
Perl:
my $char = "\x{A3F0}";
print $char; # Output: ꏰ
PHP:
$char = "\x{A3F0}";
echo $char; // Output: ꏰ
Ruby:
char = "\u{A3F0}"
puts char # Output: ꏰ
Rust:
let c = '\u{A3F0}';
println!("{}", c); // Output: ꏰ
Go:
char := '\uA3F0'
fmt.Printf("%c\n", char) // Output: ꏰ
CSS:
/* CSS content property */
.element::before {
content: "\00A3F0"; /* 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%8F%B0
MD5:
9c4a8506f7e9594cd5398e84df05ddbd
SHA1:
4dd7c193f70fbb283710c5977f21b29194833c53
Base64:
6o+w