C:
char c = '\u093F';
printf("%c\n", c); // Output: ि
JavaScript:
const char = '\u093F';
console.log(char); // Output: ि
Java:
char c = '\u093F';
System.out.println(c); // Output: ि
JSON:
{"text": "\u093F"} // Value: ि
Python:
char = '\u093F'
print(char) # Output: ि
Perl:
my $char = "\x{093F}";
print $char; # Output: ि
PHP:
$char = "\x{093F}";
echo $char; // Output: ि
Ruby:
char = "\u{093F}"
puts char # Output: ि
Rust:
let c = '\u{93F}';
println!("{}", c); // Output: ि
Go:
char := '\u093F'
fmt.Printf("%c\n", char) // Output: ि
CSS:
/* CSS content property */
.element::before {
content: "\00093F"; /* 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%A4%BF
MD5:
dd7b0174c95340944a95e5aec421ed40
SHA1:
21911bd6f4f5c74a509247e7245fefb191922e14
Base64:
4KS/