C:
char c = '\u0950';
printf("%c\n", c); // Output: ॐ
JavaScript:
const char = '\u0950';
console.log(char); // Output: ॐ
Java:
char c = '\u0950';
System.out.println(c); // Output: ॐ
JSON:
{"text": "\u0950"} // Value: ॐ
Python:
char = '\u0950'
print(char) # Output: ॐ
Perl:
my $char = "\x{0950}";
print $char; # Output: ॐ
PHP:
$char = "\x{0950}";
echo $char; // Output: ॐ
Ruby:
char = "\u{0950}"
puts char # Output: ॐ
Rust:
let c = '\u{950}';
println!("{}", c); // Output: ॐ
Go:
char := '\u0950'
fmt.Printf("%c\n", char) // Output: ॐ
CSS:
/* CSS content property */
.element::before {
content: "\000950"; /* 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%90
MD5:
45232dbc4c6de8038a4d95adeecdb68a
SHA1:
c1954c23c431b4b9534b6acd05de0cec5c0efe59
Base64:
4KWQ