C:
char c = '\u0842';
printf("%c\n", c); // Output: ࡂ
JavaScript:
const char = '\u0842';
console.log(char); // Output: ࡂ
Java:
char c = '\u0842';
System.out.println(c); // Output: ࡂ
JSON:
{"text": "\u0842"} // Value: ࡂ
Python:
char = '\u0842'
print(char) # Output: ࡂ
Perl:
my $char = "\x{0842}";
print $char; # Output: ࡂ
PHP:
$char = "\x{0842}";
echo $char; // Output: ࡂ
Ruby:
char = "\u{0842}"
puts char # Output: ࡂ
Rust:
let c = '\u{842}';
println!("{}", c); // Output: ࡂ
Go:
char := '\u0842'
fmt.Printf("%c\n", char) // Output: ࡂ
CSS:
/* CSS content property */
.element::before {
content: "\000842"; /* 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%82
MD5:
d47754c11d86ed5cadb04555c4bbf803
SHA1:
0f7f65f3b42dff43e5196016acb0d3305d843e59
Base64:
4KGC