C:
char c = '\u0827';
printf("%c\n", c); // Output: ࠧ
JavaScript:
const char = '\u0827';
console.log(char); // Output: ࠧ
Java:
char c = '\u0827';
System.out.println(c); // Output: ࠧ
JSON:
{"text": "\u0827"} // Value: ࠧ
Python:
char = '\u0827'
print(char) # Output: ࠧ
Perl:
my $char = "\x{0827}";
print $char; # Output: ࠧ
PHP:
$char = "\x{0827}";
echo $char; // Output: ࠧ
Ruby:
char = "\u{0827}"
puts char # Output: ࠧ
Rust:
let c = '\u{827}';
println!("{}", c); // Output: ࠧ
Go:
char := '\u0827'
fmt.Printf("%c\n", char) // Output: ࠧ
CSS:
/* CSS content property */
.element::before {
content: "\000827"; /* 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%A7
MD5:
509ee049b5efd42e0e544831731a8f63
SHA1:
9101ff9289a1cfb6bdf899e29261565910441c9e
Base64:
4KCn