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