C:
char c = '\u0801';
printf("%c\n", c); // Output: ࠁ
JavaScript:
const char = '\u0801';
console.log(char); // Output: ࠁ
Java:
char c = '\u0801';
System.out.println(c); // Output: ࠁ
JSON:
{"text": "\u0801"} // Value: ࠁ
Python:
char = '\u0801'
print(char) # Output: ࠁ
Perl:
my $char = "\x{0801}";
print $char; # Output: ࠁ
PHP:
$char = "\x{0801}";
echo $char; // Output: ࠁ
Ruby:
char = "\u{0801}"
puts char # Output: ࠁ
Rust:
let c = '\u{801}';
println!("{}", c); // Output: ࠁ
Go:
char := '\u0801'
fmt.Printf("%c\n", char) // Output: ࠁ
CSS:
/* CSS content property */
.element::before {
content: "\000801"; /* 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%81
MD5:
2ce03aa604a1d6018735afc9da8b49c2
SHA1:
ebcb2a2c515d4ce622309680cf30df4b861cc64c
Base64:
4KCB