C:
char c = '\u09BF';
printf("%c\n", c); // Output: ি
JavaScript:
const char = '\u09BF';
console.log(char); // Output: ি
Java:
char c = '\u09BF';
System.out.println(c); // Output: ি
JSON:
{"text": "\u09BF"} // Value: ি
Python:
char = '\u09BF'
print(char) # Output: ি
Perl:
my $char = "\x{09BF}";
print $char; # Output: ি
PHP:
$char = "\x{09BF}";
echo $char; // Output: ি
Ruby:
char = "\u{09BF}"
puts char # Output: ি
Rust:
let c = '\u{9BF}';
println!("{}", c); // Output: ি
Go:
char := '\u09BF'
fmt.Printf("%c\n", char) // Output: ি
CSS:
/* CSS content property */
.element::before {
content: "\0009BF"; /* 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%A6%BF
MD5:
60c3da022049572491e25b1f75c1fec0
SHA1:
1bd80bd2369d59d2a1b75db46f6c66e4f1e49038
Base64:
4Ka/