C:
char c = '\u2EA8';
printf("%c\n", c); // Output: ⺨
JavaScript:
const char = '\u2EA8';
console.log(char); // Output: ⺨
Java:
char c = '\u2EA8';
System.out.println(c); // Output: ⺨
JSON:
{"text": "\u2EA8"} // Value: ⺨
Python:
char = '\u2EA8'
print(char) # Output: ⺨
Perl:
my $char = "\x{2EA8}";
print $char; # Output: ⺨
PHP:
$char = "\x{2EA8}";
echo $char; // Output: ⺨
Ruby:
char = "\u{2EA8}"
puts char # Output: ⺨
Rust:
let c = '\u{2EA8}';
println!("{}", c); // Output: ⺨
Go:
char := '\u2EA8'
fmt.Printf("%c\n", char) // Output: ⺨
CSS:
/* CSS content property */
.element::before {
content: "\002EA8"; /* 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=%E2%BA%A8
MD5:
1d41cf13538c6b281760fef09db8a970
SHA1:
4aa0d4b56adc1508542e21897450e7c2b8aeb285
Base64:
4rqo