C:
char c = '\u0840';
printf("%c\n", c); // Output: ࡀ
JavaScript:
const char = '\u0840';
console.log(char); // Output: ࡀ
Java:
char c = '\u0840';
System.out.println(c); // Output: ࡀ
JSON:
{"text": "\u0840"} // Value: ࡀ
Python:
char = '\u0840'
print(char) # Output: ࡀ
Perl:
my $char = "\x{0840}";
print $char; # Output: ࡀ
PHP:
$char = "\x{0840}";
echo $char; // Output: ࡀ
Ruby:
char = "\u{0840}"
puts char # Output: ࡀ
Rust:
let c = '\u{840}';
println!("{}", c); // Output: ࡀ
Go:
char := '\u0840'
fmt.Printf("%c\n", char) // Output: ࡀ
CSS:
/* CSS content property */
.element::before {
content: "\000840"; /* 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%80
MD5:
4f0336cb4669507c48d229231b2c1d9c
SHA1:
2ad7ca1554ed7189b01365d982ffac6a911ce553
Base64:
4KGA