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