C:
char c = '\u0B89';
printf("%c\n", c); // Output: உ
JavaScript:
const char = '\u0B89';
console.log(char); // Output: உ
Java:
char c = '\u0B89';
System.out.println(c); // Output: உ
JSON:
{"text": "\u0B89"} // Value: உ
Python:
char = '\u0B89'
print(char) # Output: உ
Perl:
my $char = "\x{0B89}";
print $char; # Output: உ
PHP:
$char = "\x{0B89}";
echo $char; // Output: உ
Ruby:
char = "\u{0B89}"
puts char # Output: உ
Rust:
let c = '\u{B89}';
println!("{}", c); // Output: உ
Go:
char := '\u0B89'
fmt.Printf("%c\n", char) // Output: உ
CSS:
/* CSS content property */
.element::before {
content: "\000B89"; /* 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%AE%89
MD5:
96197df7496f6953abb7b6b05275131e
SHA1:
351b3838fa0f266440de65141bae030303b81c7f
Base64:
4K6J