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