C:
char c = '\u0943';
printf("%c\n", c); // Output: ृ
JavaScript:
const char = '\u0943';
console.log(char); // Output: ृ
Java:
char c = '\u0943';
System.out.println(c); // Output: ृ
JSON:
{"text": "\u0943"} // Value: ृ
Python:
char = '\u0943'
print(char) # Output: ृ
Perl:
my $char = "\x{0943}";
print $char; # Output: ृ
PHP:
$char = "\x{0943}";
echo $char; // Output: ृ
Ruby:
char = "\u{0943}"
puts char # Output: ृ
Rust:
let c = '\u{943}';
println!("{}", c); // Output: ृ
Go:
char := '\u0943'
fmt.Printf("%c\n", char) // Output: ृ
CSS:
/* CSS content property */
.element::before {
content: "\000943"; /* 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%83
MD5:
1e84b52b431a7993fabeae6168ed96c8
SHA1:
8c856bc2078148ebaf261c388af17fe4ca94ff99
Base64:
4KWD