C:
char c = '\u0989';
printf("%c\n", c); // Output: উ
JavaScript:
const char = '\u0989';
console.log(char); // Output: উ
Java:
char c = '\u0989';
System.out.println(c); // Output: উ
JSON:
{"text": "\u0989"} // Value: উ
Python:
char = '\u0989'
print(char) # Output: উ
Perl:
my $char = "\x{0989}";
print $char; # Output: উ
PHP:
$char = "\x{0989}";
echo $char; // Output: উ
Ruby:
char = "\u{0989}"
puts char # Output: উ
Rust:
let c = '\u{989}';
println!("{}", c); // Output: উ
Go:
char := '\u0989'
fmt.Printf("%c\n", char) // Output: উ
CSS:
/* CSS content property */
.element::before {
content: "\000989"; /* 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%A6%89
MD5:
ce441441e4c593a1fdb7a51eb677df67
SHA1:
1de5edba98a6a2ed0d0421c919304e07f62d689f
Base64:
4KaJ