C:
char c = '\u08E8';
printf("%c\n", c); // Output: ࣨ
JavaScript:
const char = '\u08E8';
console.log(char); // Output: ࣨ
Java:
char c = '\u08E8';
System.out.println(c); // Output: ࣨ
JSON:
{"text": "\u08E8"} // Value: ࣨ
Python:
char = '\u08E8'
print(char) # Output: ࣨ
Perl:
my $char = "\x{08E8}";
print $char; # Output: ࣨ
PHP:
$char = "\x{08E8}";
echo $char; // Output: ࣨ
Ruby:
char = "\u{08E8}"
puts char # Output: ࣨ
Rust:
let c = '\u{8E8}';
println!("{}", c); // Output: ࣨ
Go:
char := '\u08E8'
fmt.Printf("%c\n", char) // Output: ࣨ
CSS:
/* CSS content property */
.element::before {
content: "\0008E8"; /* 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%A8
MD5:
10fbf2089d4f75288102f6dd8ce8648e
SHA1:
02750f61b71dbf2a71d7c8f2eefad7b250b2d152
Base64:
4KOo