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