C:
char c = '\u0954';
printf("%c\n", c); // Output: ॔
JavaScript:
const char = '\u0954';
console.log(char); // Output: ॔
Java:
char c = '\u0954';
System.out.println(c); // Output: ॔
JSON:
{"text": "\u0954"} // Value: ॔
Python:
char = '\u0954'
print(char) # Output: ॔
Perl:
my $char = "\x{0954}";
print $char; # Output: ॔
PHP:
$char = "\x{0954}";
echo $char; // Output: ॔
Ruby:
char = "\u{0954}"
puts char # Output: ॔
Rust:
let c = '\u{954}';
println!("{}", c); // Output: ॔
Go:
char := '\u0954'
fmt.Printf("%c\n", char) // Output: ॔
CSS:
/* CSS content property */
.element::before {
content: "\000954"; /* 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%94
MD5:
d8b5874abca3dbe44db162fb3ad821c7
SHA1:
84104436e0a30e4b72fa9de80f34009198a1d2f5
Base64:
4KWU