C:
char c = '\u0971';
printf("%c\n", c); // Output: ॱ
JavaScript:
const char = '\u0971';
console.log(char); // Output: ॱ
Java:
char c = '\u0971';
System.out.println(c); // Output: ॱ
JSON:
{"text": "\u0971"} // Value: ॱ
Python:
char = '\u0971'
print(char) # Output: ॱ
Perl:
my $char = "\x{0971}";
print $char; # Output: ॱ
PHP:
$char = "\x{0971}";
echo $char; // Output: ॱ
Ruby:
char = "\u{0971}"
puts char # Output: ॱ
Rust:
let c = '\u{971}';
println!("{}", c); // Output: ॱ
Go:
char := '\u0971'
fmt.Printf("%c\n", char) // Output: ॱ
CSS:
/* CSS content property */
.element::before {
content: "\000971"; /* 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%B1
MD5:
8e60a5e3888a351683104809089b6c06
SHA1:
9e0d81dd9d49a8f6e7dcf65966f0b482f61a6df9
Base64:
4KWx