C:
char c = '\u0904';
printf("%c\n", c); // Output: ऄ
JavaScript:
const char = '\u0904';
console.log(char); // Output: ऄ
Java:
char c = '\u0904';
System.out.println(c); // Output: ऄ
JSON:
{"text": "\u0904"} // Value: ऄ
Python:
char = '\u0904'
print(char) # Output: ऄ
Perl:
my $char = "\x{0904}";
print $char; # Output: ऄ
PHP:
$char = "\x{0904}";
echo $char; // Output: ऄ
Ruby:
char = "\u{0904}"
puts char # Output: ऄ
Rust:
let c = '\u{904}';
println!("{}", c); // Output: ऄ
Go:
char := '\u0904'
fmt.Printf("%c\n", char) // Output: ऄ
CSS:
/* CSS content property */
.element::before {
content: "\000904"; /* 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%84
MD5:
5baa642c4e1bd1302b82d0fdbc5af185
SHA1:
c18fe056f73eaca88315fce6bdfd62e662d4cc1f
Base64:
4KSE