C:
char c = '\u0945';
printf("%c\n", c); // Output: ॅ
JavaScript:
const char = '\u0945';
console.log(char); // Output: ॅ
Java:
char c = '\u0945';
System.out.println(c); // Output: ॅ
JSON:
{"text": "\u0945"} // Value: ॅ
Python:
char = '\u0945'
print(char) # Output: ॅ
Perl:
my $char = "\x{0945}";
print $char; # Output: ॅ
PHP:
$char = "\x{0945}";
echo $char; // Output: ॅ
Ruby:
char = "\u{0945}"
puts char # Output: ॅ
Rust:
let c = '\u{945}';
println!("{}", c); // Output: ॅ
Go:
char := '\u0945'
fmt.Printf("%c\n", char) // Output: ॅ
CSS:
/* CSS content property */
.element::before {
content: "\000945"; /* 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%85
MD5:
b89519a133e24777a40ee55bd90925fd
SHA1:
375ac4c81dbf79fe9f017b41f536f6ab61acb3ea
Base64:
4KWF