C:
char c = '\u0920';
printf("%c\n", c); // Output: ठ
JavaScript:
const char = '\u0920';
console.log(char); // Output: ठ
Java:
char c = '\u0920';
System.out.println(c); // Output: ठ
JSON:
{"text": "\u0920"} // Value: ठ
Python:
char = '\u0920'
print(char) # Output: ठ
Perl:
my $char = "\x{0920}";
print $char; # Output: ठ
PHP:
$char = "\x{0920}";
echo $char; // Output: ठ
Ruby:
char = "\u{0920}"
puts char # Output: ठ
Rust:
let c = '\u{920}';
println!("{}", c); // Output: ठ
Go:
char := '\u0920'
fmt.Printf("%c\n", char) // Output: ठ
CSS:
/* CSS content property */
.element::before {
content: "\000920"; /* 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%A4%A0
MD5:
cca9eff81fa7ee56cd19bd41d68f8f48
SHA1:
7d4f7609682d0b439b962d13ce1b53d5065d9cd0
Base64:
4KSg