C:
char c = '\u0941';
printf("%c\n", c); // Output: ु
JavaScript:
const char = '\u0941';
console.log(char); // Output: ु
Java:
char c = '\u0941';
System.out.println(c); // Output: ु
JSON:
{"text": "\u0941"} // Value: ु
Python:
char = '\u0941'
print(char) # Output: ु
Perl:
my $char = "\x{0941}";
print $char; # Output: ु
PHP:
$char = "\x{0941}";
echo $char; // Output: ु
Ruby:
char = "\u{0941}"
puts char # Output: ु
Rust:
let c = '\u{941}';
println!("{}", c); // Output: ु
Go:
char := '\u0941'
fmt.Printf("%c\n", char) // Output: ु
CSS:
/* CSS content property */
.element::before {
content: "\000941"; /* 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%81
MD5:
aaebc59f5921386d6055ed00c2b11e65
SHA1:
0cad0b68cac4bd74a27d9a620e1e1eb13226f6d3
Base64:
4KWB