C:
char c = '\u0849';
printf("%c\n", c); // Output: ࡉ
JavaScript:
const char = '\u0849';
console.log(char); // Output: ࡉ
Java:
char c = '\u0849';
System.out.println(c); // Output: ࡉ
JSON:
{"text": "\u0849"} // Value: ࡉ
Python:
char = '\u0849'
print(char) # Output: ࡉ
Perl:
my $char = "\x{0849}";
print $char; # Output: ࡉ
PHP:
$char = "\x{0849}";
echo $char; // Output: ࡉ
Ruby:
char = "\u{0849}"
puts char # Output: ࡉ
Rust:
let c = '\u{849}';
println!("{}", c); // Output: ࡉ
Go:
char := '\u0849'
fmt.Printf("%c\n", char) // Output: ࡉ
CSS:
/* CSS content property */
.element::before {
content: "\000849"; /* 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%A1%89
MD5:
67ba6584e0c006d016ef22944ae600e0
SHA1:
d06e0e1da15ddbadff28de651a5aa40ca429b578
Base64:
4KGJ