C:
char c = '\u0824';
printf("%c\n", c); // Output: ࠤ
JavaScript:
const char = '\u0824';
console.log(char); // Output: ࠤ
Java:
char c = '\u0824';
System.out.println(c); // Output: ࠤ
JSON:
{"text": "\u0824"} // Value: ࠤ
Python:
char = '\u0824'
print(char) # Output: ࠤ
Perl:
my $char = "\x{0824}";
print $char; # Output: ࠤ
PHP:
$char = "\x{0824}";
echo $char; // Output: ࠤ
Ruby:
char = "\u{0824}"
puts char # Output: ࠤ
Rust:
let c = '\u{824}';
println!("{}", c); // Output: ࠤ
Go:
char := '\u0824'
fmt.Printf("%c\n", char) // Output: ࠤ
CSS:
/* CSS content property */
.element::before {
content: "\000824"; /* 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%A4
MD5:
2914ded96d1128579a49a27056e8843a
SHA1:
5625e90ac1317340ec0fe3e1b9b9170a9091cb98
Base64:
4KCk