C:
char c = '\u091F';
printf("%c\n", c); // Output: ट
JavaScript:
const char = '\u091F';
console.log(char); // Output: ट
Java:
char c = '\u091F';
System.out.println(c); // Output: ट
JSON:
{"text": "\u091F"} // Value: ट
Python:
char = '\u091F'
print(char) # Output: ट
Perl:
my $char = "\x{091F}";
print $char; # Output: ट
PHP:
$char = "\x{091F}";
echo $char; // Output: ट
Ruby:
char = "\u{091F}"
puts char # Output: ट
Rust:
let c = '\u{91F}';
println!("{}", c); // Output: ट
Go:
char := '\u091F'
fmt.Printf("%c\n", char) // Output: ट
CSS:
/* CSS content property */
.element::before {
content: "\00091F"; /* 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%9F
MD5:
3d52a33e0a9ed00270f17e48e17dd4e0
SHA1:
bd21f0f6a86f8934937fdef50bb3464407cad45b
Base64:
4KSf