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