C:
char c = '\u0826';
printf("%c\n", c); // Output: ࠦ
JavaScript:
const char = '\u0826';
console.log(char); // Output: ࠦ
Java:
char c = '\u0826';
System.out.println(c); // Output: ࠦ
JSON:
{"text": "\u0826"} // Value: ࠦ
Python:
char = '\u0826'
print(char) # Output: ࠦ
Perl:
my $char = "\x{0826}";
print $char; # Output: ࠦ
PHP:
$char = "\x{0826}";
echo $char; // Output: ࠦ
Ruby:
char = "\u{0826}"
puts char # Output: ࠦ
Rust:
let c = '\u{826}';
println!("{}", c); // Output: ࠦ
Go:
char := '\u0826'
fmt.Printf("%c\n", char) // Output: ࠦ
CSS:
/* CSS content property */
.element::before {
content: "\000826"; /* 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%A6
MD5:
78c4187abd4dba3fed8e49f51e33c774
SHA1:
86e0130ee1b75e8dee09f1664e9bbbcedfa22526
Base64:
4KCm