C:
char c = '\u0942';
printf("%c\n", c); // Output: ू
JavaScript:
const char = '\u0942';
console.log(char); // Output: ू
Java:
char c = '\u0942';
System.out.println(c); // Output: ू
JSON:
{"text": "\u0942"} // Value: ू
Python:
char = '\u0942'
print(char) # Output: ू
Perl:
my $char = "\x{0942}";
print $char; # Output: ू
PHP:
$char = "\x{0942}";
echo $char; // Output: ू
Ruby:
char = "\u{0942}"
puts char # Output: ू
Rust:
let c = '\u{942}';
println!("{}", c); // Output: ू
Go:
char := '\u0942'
fmt.Printf("%c\n", char) // Output: ू
CSS:
/* CSS content property */
.element::before {
content: "\000942"; /* 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%82
MD5:
dde446ad81005bbd137b0177ec1a0108
SHA1:
3d1c819c4446cd6d4f38b307f41bec195043d469
Base64:
4KWC