C:
char c = '\u0907';
printf("%c\n", c); // Output: इ
JavaScript:
const char = '\u0907';
console.log(char); // Output: इ
Java:
char c = '\u0907';
System.out.println(c); // Output: इ
JSON:
{"text": "\u0907"} // Value: इ
Python:
char = '\u0907'
print(char) # Output: इ
Perl:
my $char = "\x{0907}";
print $char; # Output: इ
PHP:
$char = "\x{0907}";
echo $char; // Output: इ
Ruby:
char = "\u{0907}"
puts char # Output: इ
Rust:
let c = '\u{907}';
println!("{}", c); // Output: इ
Go:
char := '\u0907'
fmt.Printf("%c\n", char) // Output: इ
CSS:
/* CSS content property */
.element::before {
content: "\000907"; /* 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%87
MD5:
cd4bb37fd7505830fa4bb20d20db9d0f
SHA1:
2b4c7cc90030ded94f34a56aa633a91f3b1a416c
Base64:
4KSH