C:
char c = '\u0960';
printf("%c\n", c); // Output: ॠ
JavaScript:
const char = '\u0960';
console.log(char); // Output: ॠ
Java:
char c = '\u0960';
System.out.println(c); // Output: ॠ
JSON:
{"text": "\u0960"} // Value: ॠ
Python:
char = '\u0960'
print(char) # Output: ॠ
Perl:
my $char = "\x{0960}";
print $char; # Output: ॠ
PHP:
$char = "\x{0960}";
echo $char; // Output: ॠ
Ruby:
char = "\u{0960}"
puts char # Output: ॠ
Rust:
let c = '\u{960}';
println!("{}", c); // Output: ॠ
Go:
char := '\u0960'
fmt.Printf("%c\n", char) // Output: ॠ
CSS:
/* CSS content property */
.element::before {
content: "\000960"; /* 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%A0
MD5:
78ad2475cd18feca29176ac4725bfd6d
SHA1:
f36fbbddca7635ae199582c46722a69b559ce7eb
Base64:
4KWg