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