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