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