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