C:
char c = '\u0805';
printf("%c\n", c); // Output: ࠅ
JavaScript:
const char = '\u0805';
console.log(char); // Output: ࠅ
Java:
char c = '\u0805';
System.out.println(c); // Output: ࠅ
JSON:
{"text": "\u0805"} // Value: ࠅ
Python:
char = '\u0805'
print(char) # Output: ࠅ
Perl:
my $char = "\x{0805}";
print $char; # Output: ࠅ
PHP:
$char = "\x{0805}";
echo $char; // Output: ࠅ
Ruby:
char = "\u{0805}"
puts char # Output: ࠅ
Rust:
let c = '\u{805}';
println!("{}", c); // Output: ࠅ
Go:
char := '\u0805'
fmt.Printf("%c\n", char) // Output: ࠅ
CSS:
/* CSS content property */
.element::before {
content: "\000805"; /* 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%A0%85
MD5:
9b35307593b82ecbd69a789bea7e6633
SHA1:
5475c5f1f80c6803aeeeb549c79e143a4f834c1e
Base64:
4KCF