C:
char c = '\u0967';
printf("%c\n", c); // Output: १
JavaScript:
const char = '\u0967';
console.log(char); // Output: १
Java:
char c = '\u0967';
System.out.println(c); // Output: १
JSON:
{"text": "\u0967"} // Value: १
Python:
char = '\u0967'
print(char) # Output: १
Perl:
my $char = "\x{0967}";
print $char; # Output: १
PHP:
$char = "\x{0967}";
echo $char; // Output: १
Ruby:
char = "\u{0967}"
puts char # Output: १
Rust:
let c = '\u{967}';
println!("{}", c); // Output: १
Go:
char := '\u0967'
fmt.Printf("%c\n", char) // Output: १
CSS:
/* CSS content property */
.element::before {
content: "\000967"; /* 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%A7
MD5:
6c4234807a294ff278c68f18493b7dee
SHA1:
d21c12abdf0ac356d694c13be7843073a396d66d
Base64:
4KWn