C:
char c = '\u0915';
printf("%c\n", c); // Output: क
JavaScript:
const char = '\u0915';
console.log(char); // Output: क
Java:
char c = '\u0915';
System.out.println(c); // Output: क
JSON:
{"text": "\u0915"} // Value: क
Python:
char = '\u0915'
print(char) # Output: क
Perl:
my $char = "\x{0915}";
print $char; # Output: क
PHP:
$char = "\x{0915}";
echo $char; // Output: क
Ruby:
char = "\u{0915}"
puts char # Output: क
Rust:
let c = '\u{915}';
println!("{}", c); // Output: क
Go:
char := '\u0915'
fmt.Printf("%c\n", char) // Output: क
CSS:
/* CSS content property */
.element::before {
content: "\000915"; /* 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%95
MD5:
920cc330837bbd206f02b0d9660af196
SHA1:
0469f42df79b281aa55a7092740cca70b8d5b065
Base64:
4KSV