C:
char c = '\u0902';
printf("%c\n", c); // Output: ं
JavaScript:
const char = '\u0902';
console.log(char); // Output: ं
Java:
char c = '\u0902';
System.out.println(c); // Output: ं
JSON:
{"text": "\u0902"} // Value: ं
Python:
char = '\u0902'
print(char) # Output: ं
Perl:
my $char = "\x{0902}";
print $char; # Output: ं
PHP:
$char = "\x{0902}";
echo $char; // Output: ं
Ruby:
char = "\u{0902}"
puts char # Output: ं
Rust:
let c = '\u{902}';
println!("{}", c); // Output: ं
Go:
char := '\u0902'
fmt.Printf("%c\n", char) // Output: ं
CSS:
/* CSS content property */
.element::before {
content: "\000902"; /* 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%82
MD5:
a0d929ea65cf27f13d0fcf5190a84ec9
SHA1:
e6e07f2eca6958b590e1c79b4cea3124e35b4d99
Base64:
4KSC