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