C:
char c = '\u0930';
printf("%c\n", c); // Output: र
JavaScript:
const char = '\u0930';
console.log(char); // Output: र
Java:
char c = '\u0930';
System.out.println(c); // Output: र
JSON:
{"text": "\u0930"} // Value: र
Python:
char = '\u0930'
print(char) # Output: र
Perl:
my $char = "\x{0930}";
print $char; # Output: र
PHP:
$char = "\x{0930}";
echo $char; // Output: र
Ruby:
char = "\u{0930}"
puts char # Output: र
Rust:
let c = '\u{930}';
println!("{}", c); // Output: र
Go:
char := '\u0930'
fmt.Printf("%c\n", char) // Output: र
CSS:
/* CSS content property */
.element::before {
content: "\000930"; /* 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%B0
MD5:
91e8193d77548f0f4588a423b2a01d1d
SHA1:
1ce520c74a3e2ee82fed59be3e91ea1a84c7e433
Base64:
4KSw