C:
char c = '\u0955';
printf("%c\n", c); // Output: ॕ
JavaScript:
const char = '\u0955';
console.log(char); // Output: ॕ
Java:
char c = '\u0955';
System.out.println(c); // Output: ॕ
JSON:
{"text": "\u0955"} // Value: ॕ
Python:
char = '\u0955'
print(char) # Output: ॕ
Perl:
my $char = "\x{0955}";
print $char; # Output: ॕ
PHP:
$char = "\x{0955}";
echo $char; // Output: ॕ
Ruby:
char = "\u{0955}"
puts char # Output: ॕ
Rust:
let c = '\u{955}';
println!("{}", c); // Output: ॕ
Go:
char := '\u0955'
fmt.Printf("%c\n", char) // Output: ॕ
CSS:
/* CSS content property */
.element::before {
content: "\000955"; /* 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%95
MD5:
435fb041142a73dd5bb8b646807ed892
SHA1:
21c5a5f59a17db7f4e2bbdbf530982f10cd5e0d6
Base64:
4KWV