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