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