C:
char c = '\u081F';
printf("%c\n", c); // Output: ࠟ
JavaScript:
const char = '\u081F';
console.log(char); // Output: ࠟ
Java:
char c = '\u081F';
System.out.println(c); // Output: ࠟ
JSON:
{"text": "\u081F"} // Value: ࠟ
Python:
char = '\u081F'
print(char) # Output: ࠟ
Perl:
my $char = "\x{081F}";
print $char; # Output: ࠟ
PHP:
$char = "\x{081F}";
echo $char; // Output: ࠟ
Ruby:
char = "\u{081F}"
puts char # Output: ࠟ
Rust:
let c = '\u{81F}';
println!("{}", c); // Output: ࠟ
Go:
char := '\u081F'
fmt.Printf("%c\n", char) // Output: ࠟ
CSS:
/* CSS content property */
.element::before {
content: "\00081F"; /* 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%9F
MD5:
59c827d2849d89b760a7ddc3c4bc863c
SHA1:
afa236d4a2db9cece6cdf6db5a58d574782b0e71
Base64:
4KCf