C:
char c = '\u0813';
printf("%c\n", c); // Output: ࠓ
JavaScript:
const char = '\u0813';
console.log(char); // Output: ࠓ
Java:
char c = '\u0813';
System.out.println(c); // Output: ࠓ
JSON:
{"text": "\u0813"} // Value: ࠓ
Python:
char = '\u0813'
print(char) # Output: ࠓ
Perl:
my $char = "\x{0813}";
print $char; # Output: ࠓ
PHP:
$char = "\x{0813}";
echo $char; // Output: ࠓ
Ruby:
char = "\u{0813}"
puts char # Output: ࠓ
Rust:
let c = '\u{813}';
println!("{}", c); // Output: ࠓ
Go:
char := '\u0813'
fmt.Printf("%c\n", char) // Output: ࠓ
CSS:
/* CSS content property */
.element::before {
content: "\000813"; /* 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%93
MD5:
2e16f93cfc61ee10ea7fe1934b326e6a
SHA1:
beca25af4a0974cbfab52165849c244eb916cf22
Base64:
4KCT