C:
char c = '\u0973';
printf("%c\n", c); // Output: ॳ
JavaScript:
const char = '\u0973';
console.log(char); // Output: ॳ
Java:
char c = '\u0973';
System.out.println(c); // Output: ॳ
JSON:
{"text": "\u0973"} // Value: ॳ
Python:
char = '\u0973'
print(char) # Output: ॳ
Perl:
my $char = "\x{0973}";
print $char; # Output: ॳ
PHP:
$char = "\x{0973}";
echo $char; // Output: ॳ
Ruby:
char = "\u{0973}"
puts char # Output: ॳ
Rust:
let c = '\u{973}';
println!("{}", c); // Output: ॳ
Go:
char := '\u0973'
fmt.Printf("%c\n", char) // Output: ॳ
CSS:
/* CSS content property */
.element::before {
content: "\000973"; /* 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%B3
MD5:
0b6898fb157ba3def4ccebb9023e46c1
SHA1:
861ed3feb8cb9df1ed6fecc291e6f709ae4c443c
Base64:
4KWz