C:
char c = '\u0901';
printf("%c\n", c); // Output: ँ
JavaScript:
const char = '\u0901';
console.log(char); // Output: ँ
Java:
char c = '\u0901';
System.out.println(c); // Output: ँ
JSON:
{"text": "\u0901"} // Value: ँ
Python:
char = '\u0901'
print(char) # Output: ँ
Perl:
my $char = "\x{0901}";
print $char; # Output: ँ
PHP:
$char = "\x{0901}";
echo $char; // Output: ँ
Ruby:
char = "\u{0901}"
puts char # Output: ँ
Rust:
let c = '\u{901}';
println!("{}", c); // Output: ँ
Go:
char := '\u0901'
fmt.Printf("%c\n", char) // Output: ँ
CSS:
/* CSS content property */
.element::before {
content: "\000901"; /* 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%81
MD5:
eb676d9bce021036ceeb8abdfee3ec58
SHA1:
941000075ea8dc25ce0581ca1b580cb06eb9ccfc
Base64:
4KSB