C:
char c = '\u094B';
printf("%c\n", c); // Output: ो
JavaScript:
const char = '\u094B';
console.log(char); // Output: ो
Java:
char c = '\u094B';
System.out.println(c); // Output: ो
JSON:
{"text": "\u094B"} // Value: ो
Python:
char = '\u094B'
print(char) # Output: ो
Perl:
my $char = "\x{094B}";
print $char; # Output: ो
PHP:
$char = "\x{094B}";
echo $char; // Output: ो
Ruby:
char = "\u{094B}"
puts char # Output: ो
Rust:
let c = '\u{94B}';
println!("{}", c); // Output: ो
Go:
char := '\u094B'
fmt.Printf("%c\n", char) // Output: ो
CSS:
/* CSS content property */
.element::before {
content: "\00094B"; /* 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%8B
MD5:
7408ae934c9856e891c9d806303ed271
SHA1:
d4e29781875197018554bea1fbd99c2420d6d084
Base64:
4KWL