C:
char c = '\u0962';
printf("%c\n", c); // Output: ॢ
JavaScript:
const char = '\u0962';
console.log(char); // Output: ॢ
Java:
char c = '\u0962';
System.out.println(c); // Output: ॢ
JSON:
{"text": "\u0962"} // Value: ॢ
Python:
char = '\u0962'
print(char) # Output: ॢ
Perl:
my $char = "\x{0962}";
print $char; # Output: ॢ
PHP:
$char = "\x{0962}";
echo $char; // Output: ॢ
Ruby:
char = "\u{0962}"
puts char # Output: ॢ
Rust:
let c = '\u{962}';
println!("{}", c); // Output: ॢ
Go:
char := '\u0962'
fmt.Printf("%c\n", char) // Output: ॢ
CSS:
/* CSS content property */
.element::before {
content: "\000962"; /* 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%A2
MD5:
dc9c6d9244c813725cac44de5fa90d8f
SHA1:
8a0b1d0d0df683171b5d16b291bf6094ed55c7ce
Base64:
4KWi