C:
char c = '\u0B5F';
printf("%c\n", c); // Output: ୟ
JavaScript:
const char = '\u0B5F';
console.log(char); // Output: ୟ
Java:
char c = '\u0B5F';
System.out.println(c); // Output: ୟ
JSON:
{"text": "\u0B5F"} // Value: ୟ
Python:
char = '\u0B5F'
print(char) # Output: ୟ
Perl:
my $char = "\x{0B5F}";
print $char; # Output: ୟ
PHP:
$char = "\x{0B5F}";
echo $char; // Output: ୟ
Ruby:
char = "\u{0B5F}"
puts char # Output: ୟ
Rust:
let c = '\u{B5F}';
println!("{}", c); // Output: ୟ
Go:
char := '\u0B5F'
fmt.Printf("%c\n", char) // Output: ୟ
CSS:
/* CSS content property */
.element::before {
content: "\000B5F"; /* 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%AD%9F
MD5:
6a7d0fcf609e1956b2b9b078ca54ce8a
SHA1:
ecb507f9626e9cf0cda668bd0eeed08a2910510f
Base64:
4K2f