C:
char c = '\u0969';
printf("%c\n", c); // Output: ३
JavaScript:
const char = '\u0969';
console.log(char); // Output: ३
Java:
char c = '\u0969';
System.out.println(c); // Output: ३
JSON:
{"text": "\u0969"} // Value: ३
Python:
char = '\u0969'
print(char) # Output: ३
Perl:
my $char = "\x{0969}";
print $char; # Output: ३
PHP:
$char = "\x{0969}";
echo $char; // Output: ३
Ruby:
char = "\u{0969}"
puts char # Output: ३
Rust:
let c = '\u{969}';
println!("{}", c); // Output: ३
Go:
char := '\u0969'
fmt.Printf("%c\n", char) // Output: ३
CSS:
/* CSS content property */
.element::before {
content: "\000969"; /* 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%A9
MD5:
cad32896b399d211e4e76c0b6acfce51
SHA1:
acd9fbc926f4707be4d6a05b400fe40de1f31449
Base64:
4KWp