C:
char c = '\u0932';
printf("%c\n", c); // Output: ल
JavaScript:
const char = '\u0932';
console.log(char); // Output: ल
Java:
char c = '\u0932';
System.out.println(c); // Output: ल
JSON:
{"text": "\u0932"} // Value: ल
Python:
char = '\u0932'
print(char) # Output: ल
Perl:
my $char = "\x{0932}";
print $char; # Output: ल
PHP:
$char = "\x{0932}";
echo $char; // Output: ल
Ruby:
char = "\u{0932}"
puts char # Output: ल
Rust:
let c = '\u{932}';
println!("{}", c); // Output: ल
Go:
char := '\u0932'
fmt.Printf("%c\n", char) // Output: ल
CSS:
/* CSS content property */
.element::before {
content: "\000932"; /* 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%B2
MD5:
b59a738390ef96c903636f158e823b3c
SHA1:
9ddb81178e4dbe101fa474236ac0030b1c136c03
Base64:
4KSy