C:
char c = '\u0940';
printf("%c\n", c); // Output: ी
JavaScript:
const char = '\u0940';
console.log(char); // Output: ी
Java:
char c = '\u0940';
System.out.println(c); // Output: ी
JSON:
{"text": "\u0940"} // Value: ी
Python:
char = '\u0940'
print(char) # Output: ी
Perl:
my $char = "\x{0940}";
print $char; # Output: ी
PHP:
$char = "\x{0940}";
echo $char; // Output: ी
Ruby:
char = "\u{0940}"
puts char # Output: ी
Rust:
let c = '\u{940}';
println!("{}", c); // Output: ी
Go:
char := '\u0940'
fmt.Printf("%c\n", char) // Output: ी
CSS:
/* CSS content property */
.element::before {
content: "\000940"; /* 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%A5%80
MD5:
629c364b46774b864050df02e66f4b56
SHA1:
759de947a0c805a060e760bd65d510212f12fccb
Base64:
4KWA