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