C:
char c = '\u08EE';
printf("%c\n", c); // Output: ࣮
JavaScript:
const char = '\u08EE';
console.log(char); // Output: ࣮
Java:
char c = '\u08EE';
System.out.println(c); // Output: ࣮
JSON:
{"text": "\u08EE"} // Value: ࣮
Python:
char = '\u08EE'
print(char) # Output: ࣮
Perl:
my $char = "\x{08EE}";
print $char; # Output: ࣮
PHP:
$char = "\x{08EE}";
echo $char; // Output: ࣮
Ruby:
char = "\u{08EE}"
puts char # Output: ࣮
Rust:
let c = '\u{8EE}';
println!("{}", c); // Output: ࣮
Go:
char := '\u08EE'
fmt.Printf("%c\n", char) // Output: ࣮
CSS:
/* CSS content property */
.element::before {
content: "\0008EE"; /* 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=%E0%A3%AE
MD5:
30d7130f7dede470683dba2b3127bab2
SHA1:
ad85cef2d3ef3c34b2b6dd80cd16757e7fd9bcf9
Base64:
4KOu