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