C:
char c = '\u0968';
printf("%c\n", c); // Output: २
JavaScript:
const char = '\u0968';
console.log(char); // Output: २
Java:
char c = '\u0968';
System.out.println(c); // Output: २
JSON:
{"text": "\u0968"} // Value: २
Python:
char = '\u0968'
print(char) # Output: २
Perl:
my $char = "\x{0968}";
print $char; # Output: २
PHP:
$char = "\x{0968}";
echo $char; // Output: २
Ruby:
char = "\u{0968}"
puts char # Output: २
Rust:
let c = '\u{968}';
println!("{}", c); // Output: २
Go:
char := '\u0968'
fmt.Printf("%c\n", char) // Output: २
CSS:
/* CSS content property */
.element::before {
content: "\000968"; /* 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%A8
MD5:
b643d6a79242d78c2cfdf2ca01c4174c
SHA1:
3f0c476c179a8b312b3997f2ace823e2bf458c97
Base64:
4KWo