C:
char c = '\u096A';
printf("%c\n", c); // Output: ४
JavaScript:
const char = '\u096A';
console.log(char); // Output: ४
Java:
char c = '\u096A';
System.out.println(c); // Output: ४
JSON:
{"text": "\u096A"} // Value: ४
Python:
char = '\u096A'
print(char) # Output: ४
Perl:
my $char = "\x{096A}";
print $char; # Output: ४
PHP:
$char = "\x{096A}";
echo $char; // Output: ४
Ruby:
char = "\u{096A}"
puts char # Output: ४
Rust:
let c = '\u{96A}';
println!("{}", c); // Output: ४
Go:
char := '\u096A'
fmt.Printf("%c\n", char) // Output: ४
CSS:
/* CSS content property */
.element::before {
content: "\00096A"; /* 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%AA
MD5:
bafa9bbe87176101548382ed0411bd44
SHA1:
c9e9d56ce7e90a5ec807182c15c3563b522173c3
Base64:
4KWq