C:
char c = '\u0832';
printf("%c\n", c); // Output: ࠲
JavaScript:
const char = '\u0832';
console.log(char); // Output: ࠲
Java:
char c = '\u0832';
System.out.println(c); // Output: ࠲
JSON:
{"text": "\u0832"} // Value: ࠲
Python:
char = '\u0832'
print(char) # Output: ࠲
Perl:
my $char = "\x{0832}";
print $char; # Output: ࠲
PHP:
$char = "\x{0832}";
echo $char; // Output: ࠲
Ruby:
char = "\u{0832}"
puts char # Output: ࠲
Rust:
let c = '\u{832}';
println!("{}", c); // Output: ࠲
Go:
char := '\u0832'
fmt.Printf("%c\n", char) // Output: ࠲
CSS:
/* CSS content property */
.element::before {
content: "\000832"; /* 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%B2
MD5:
6d8900a8388110c59de3ba63480db808
SHA1:
03f3171452568f89f4b9ebb4e71a9179e152c6e0
Base64:
4KCy