C:
char c = '\u0913';
printf("%c\n", c); // Output: ओ
JavaScript:
const char = '\u0913';
console.log(char); // Output: ओ
Java:
char c = '\u0913';
System.out.println(c); // Output: ओ
JSON:
{"text": "\u0913"} // Value: ओ
Python:
char = '\u0913'
print(char) # Output: ओ
Perl:
my $char = "\x{0913}";
print $char; # Output: ओ
PHP:
$char = "\x{0913}";
echo $char; // Output: ओ
Ruby:
char = "\u{0913}"
puts char # Output: ओ
Rust:
let c = '\u{913}';
println!("{}", c); // Output: ओ
Go:
char := '\u0913'
fmt.Printf("%c\n", char) // Output: ओ
CSS:
/* CSS content property */
.element::before {
content: "\000913"; /* 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%93
MD5:
3add83361b4ee88028ac5e9f1538a87f
SHA1:
c307e833e2cd0c2cff2773e0a8906c4054484c2a
Base64:
4KST