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