C:
char c = '\u0944';
printf("%c\n", c); // Output: ॄ
JavaScript:
const char = '\u0944';
console.log(char); // Output: ॄ
Java:
char c = '\u0944';
System.out.println(c); // Output: ॄ
JSON:
{"text": "\u0944"} // Value: ॄ
Python:
char = '\u0944'
print(char) # Output: ॄ
Perl:
my $char = "\x{0944}";
print $char; # Output: ॄ
PHP:
$char = "\x{0944}";
echo $char; // Output: ॄ
Ruby:
char = "\u{0944}"
puts char # Output: ॄ
Rust:
let c = '\u{944}';
println!("{}", c); // Output: ॄ
Go:
char := '\u0944'
fmt.Printf("%c\n", char) // Output: ॄ
CSS:
/* CSS content property */
.element::before {
content: "\000944"; /* 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%84
MD5:
9e4206a5c3ae6d96a9740c4bd47ba4cf
SHA1:
eac648c2b79e2a6c46f4c104f81da6a6b9e1b890
Base64:
4KWE