C:
char c = '\u0963';
printf("%c\n", c); // Output: ॣ
JavaScript:
const char = '\u0963';
console.log(char); // Output: ॣ
Java:
char c = '\u0963';
System.out.println(c); // Output: ॣ
JSON:
{"text": "\u0963"} // Value: ॣ
Python:
char = '\u0963'
print(char) # Output: ॣ
Perl:
my $char = "\x{0963}";
print $char; # Output: ॣ
PHP:
$char = "\x{0963}";
echo $char; // Output: ॣ
Ruby:
char = "\u{0963}"
puts char # Output: ॣ
Rust:
let c = '\u{963}';
println!("{}", c); // Output: ॣ
Go:
char := '\u0963'
fmt.Printf("%c\n", char) // Output: ॣ
CSS:
/* CSS content property */
.element::before {
content: "\000963"; /* 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%A3
MD5:
3f77691752378829f03b17d771a45b47
SHA1:
8705a884803818d7c91f7dd1cbdd3d95263430a8
Base64:
4KWj