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