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