C:
char c = '\u0909';
printf("%c\n", c); // Output: उ
JavaScript:
const char = '\u0909';
console.log(char); // Output: उ
Java:
char c = '\u0909';
System.out.println(c); // Output: उ
JSON:
{"text": "\u0909"} // Value: उ
Python:
char = '\u0909'
print(char) # Output: उ
Perl:
my $char = "\x{0909}";
print $char; # Output: उ
PHP:
$char = "\x{0909}";
echo $char; // Output: उ
Ruby:
char = "\u{0909}"
puts char # Output: उ
Rust:
let c = '\u{909}';
println!("{}", c); // Output: उ
Go:
char := '\u0909'
fmt.Printf("%c\n", char) // Output: उ
CSS:
/* CSS content property */
.element::before {
content: "\000909"; /* 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%89
MD5:
55258f8e61fe04c452be3aa6e4ed7f27
SHA1:
416aacfbcfc0cde9c091d1e2759246f992d53823
Base64:
4KSJ