C:
char c = '\u0817';
printf("%c\n", c); // Output: ࠗ
JavaScript:
const char = '\u0817';
console.log(char); // Output: ࠗ
Java:
char c = '\u0817';
System.out.println(c); // Output: ࠗ
JSON:
{"text": "\u0817"} // Value: ࠗ
Python:
char = '\u0817'
print(char) # Output: ࠗ
Perl:
my $char = "\x{0817}";
print $char; # Output: ࠗ
PHP:
$char = "\x{0817}";
echo $char; // Output: ࠗ
Ruby:
char = "\u{0817}"
puts char # Output: ࠗ
Rust:
let c = '\u{817}';
println!("{}", c); // Output: ࠗ
Go:
char := '\u0817'
fmt.Printf("%c\n", char) // Output: ࠗ
CSS:
/* CSS content property */
.element::before {
content: "\000817"; /* 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%97
MD5:
93ffd58997e57ada41d42a6e700f8e17
SHA1:
38fa3129a0d15a708039e1d677785677e818de24
Base64:
4KCX