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