C:
char c = '\u0951';
printf("%c\n", c); // Output: ॑
JavaScript:
const char = '\u0951';
console.log(char); // Output: ॑
Java:
char c = '\u0951';
System.out.println(c); // Output: ॑
JSON:
{"text": "\u0951"} // Value: ॑
Python:
char = '\u0951'
print(char) # Output: ॑
Perl:
my $char = "\x{0951}";
print $char; # Output: ॑
PHP:
$char = "\x{0951}";
echo $char; // Output: ॑
Ruby:
char = "\u{0951}"
puts char # Output: ॑
Rust:
let c = '\u{951}';
println!("{}", c); // Output: ॑
Go:
char := '\u0951'
fmt.Printf("%c\n", char) // Output: ॑
CSS:
/* CSS content property */
.element::before {
content: "\000951"; /* 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%91
MD5:
e8e2d358d67be4fe5759d6d96ba9c7d2
SHA1:
121b2c997d2531932b2bd13e534407553710fea9
Base64:
4KWR