C:
char c = '\u0966';
printf("%c\n", c); // Output: ०
JavaScript:
const char = '\u0966';
console.log(char); // Output: ०
Java:
char c = '\u0966';
System.out.println(c); // Output: ०
JSON:
{"text": "\u0966"} // Value: ०
Python:
char = '\u0966'
print(char) # Output: ०
Perl:
my $char = "\x{0966}";
print $char; # Output: ०
PHP:
$char = "\x{0966}";
echo $char; // Output: ०
Ruby:
char = "\u{0966}"
puts char # Output: ०
Rust:
let c = '\u{966}';
println!("{}", c); // Output: ०
Go:
char := '\u0966'
fmt.Printf("%c\n", char) // Output: ०
CSS:
/* CSS content property */
.element::before {
content: "\000966"; /* 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%A6
MD5:
26b8c1a3f1da5b1d3af05e38e90beb1a
SHA1:
8bb836405bcc769c25f2cd71906fd22cd59569ad
Base64:
4KWm