C:
char c = '\u0831';
printf("%c\n", c); // Output: ࠱
JavaScript:
const char = '\u0831';
console.log(char); // Output: ࠱
Java:
char c = '\u0831';
System.out.println(c); // Output: ࠱
JSON:
{"text": "\u0831"} // Value: ࠱
Python:
char = '\u0831'
print(char) # Output: ࠱
Perl:
my $char = "\x{0831}";
print $char; # Output: ࠱
PHP:
$char = "\x{0831}";
echo $char; // Output: ࠱
Ruby:
char = "\u{0831}"
puts char # Output: ࠱
Rust:
let c = '\u{831}';
println!("{}", c); // Output: ࠱
Go:
char := '\u0831'
fmt.Printf("%c\n", char) // Output: ࠱
CSS:
/* CSS content property */
.element::before {
content: "\000831"; /* 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%B1
MD5:
a7847d14dfc7ec043f4a838ba5bad985
SHA1:
5750dc569b339b7649baaae7502e155419de11f9
Base64:
4KCx