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