C:
char c = '\u0949';
printf("%c\n", c); // Output: ॉ
JavaScript:
const char = '\u0949';
console.log(char); // Output: ॉ
Java:
char c = '\u0949';
System.out.println(c); // Output: ॉ
JSON:
{"text": "\u0949"} // Value: ॉ
Python:
char = '\u0949'
print(char) # Output: ॉ
Perl:
my $char = "\x{0949}";
print $char; # Output: ॉ
PHP:
$char = "\x{0949}";
echo $char; // Output: ॉ
Ruby:
char = "\u{0949}"
puts char # Output: ॉ
Rust:
let c = '\u{949}';
println!("{}", c); // Output: ॉ
Go:
char := '\u0949'
fmt.Printf("%c\n", char) // Output: ॉ
CSS:
/* CSS content property */
.element::before {
content: "\000949"; /* 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%89
MD5:
57603785af66ed06d3ab7040e0f9f323
SHA1:
b2cc0e2953fcaad7b29bd111a240479baccad427
Base64:
4KWJ