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