C:
char c = '\u0903';
printf("%c\n", c); // Output: ः
JavaScript:
const char = '\u0903';
console.log(char); // Output: ः
Java:
char c = '\u0903';
System.out.println(c); // Output: ः
JSON:
{"text": "\u0903"} // Value: ः
Python:
char = '\u0903'
print(char) # Output: ः
Perl:
my $char = "\x{0903}";
print $char; # Output: ः
PHP:
$char = "\x{0903}";
echo $char; // Output: ः
Ruby:
char = "\u{0903}"
puts char # Output: ः
Rust:
let c = '\u{903}';
println!("{}", c); // Output: ः
Go:
char := '\u0903'
fmt.Printf("%c\n", char) // Output: ः
CSS:
/* CSS content property */
.element::before {
content: "\000903"; /* 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%A4%83
MD5:
d2c70d1e90b2ac7b33d94cec6b2a6145
SHA1:
78f6dcd97327f2953f59939661a7c9b5093d229a
Base64:
4KSD