C:
char c = '\u0970';
printf("%c\n", c); // Output: ॰
JavaScript:
const char = '\u0970';
console.log(char); // Output: ॰
Java:
char c = '\u0970';
System.out.println(c); // Output: ॰
JSON:
{"text": "\u0970"} // Value: ॰
Python:
char = '\u0970'
print(char) # Output: ॰
Perl:
my $char = "\x{0970}";
print $char; # Output: ॰
PHP:
$char = "\x{0970}";
echo $char; // Output: ॰
Ruby:
char = "\u{0970}"
puts char # Output: ॰
Rust:
let c = '\u{970}';
println!("{}", c); // Output: ॰
Go:
char := '\u0970'
fmt.Printf("%c\n", char) // Output: ॰
CSS:
/* CSS content property */
.element::before {
content: "\000970"; /* 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%B0
MD5:
0ebf9e58bd786d5a32716e25f3692569
SHA1:
c0d0e159d683faa619dc04ff77d3ebbdd531a6d2
Base64:
4KWw