C:
char c = '\u0841';
printf("%c\n", c); // Output: ࡁ
JavaScript:
const char = '\u0841';
console.log(char); // Output: ࡁ
Java:
char c = '\u0841';
System.out.println(c); // Output: ࡁ
JSON:
{"text": "\u0841"} // Value: ࡁ
Python:
char = '\u0841'
print(char) # Output: ࡁ
Perl:
my $char = "\x{0841}";
print $char; # Output: ࡁ
PHP:
$char = "\x{0841}";
echo $char; // Output: ࡁ
Ruby:
char = "\u{0841}"
puts char # Output: ࡁ
Rust:
let c = '\u{841}';
println!("{}", c); // Output: ࡁ
Go:
char := '\u0841'
fmt.Printf("%c\n", char) // Output: ࡁ
CSS:
/* CSS content property */
.element::before {
content: "\000841"; /* 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%81
MD5:
7ecc1a844c6cffff102de1c0906ec222
SHA1:
ea66353f965a8e4c1cca801cabc9e859115490c8
Base64:
4KGB