C:
char c = '\u0833';
printf("%c\n", c); // Output: ࠳
JavaScript:
const char = '\u0833';
console.log(char); // Output: ࠳
Java:
char c = '\u0833';
System.out.println(c); // Output: ࠳
JSON:
{"text": "\u0833"} // Value: ࠳
Python:
char = '\u0833'
print(char) # Output: ࠳
Perl:
my $char = "\x{0833}";
print $char; # Output: ࠳
PHP:
$char = "\x{0833}";
echo $char; // Output: ࠳
Ruby:
char = "\u{0833}"
puts char # Output: ࠳
Rust:
let c = '\u{833}';
println!("{}", c); // Output: ࠳
Go:
char := '\u0833'
fmt.Printf("%c\n", char) // Output: ࠳
CSS:
/* CSS content property */
.element::before {
content: "\000833"; /* 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%B3
MD5:
2fddf573e36fd98dde5604f55578eec4
SHA1:
14facccc4945d6f54cc7d0886d2436ebe39e0998
Base64:
4KCz