C:
char c = '\u0917';
printf("%c\n", c); // Output: ग
JavaScript:
const char = '\u0917';
console.log(char); // Output: ग
Java:
char c = '\u0917';
System.out.println(c); // Output: ग
JSON:
{"text": "\u0917"} // Value: ग
Python:
char = '\u0917'
print(char) # Output: ग
Perl:
my $char = "\x{0917}";
print $char; # Output: ग
PHP:
$char = "\x{0917}";
echo $char; // Output: ग
Ruby:
char = "\u{0917}"
puts char # Output: ग
Rust:
let c = '\u{917}';
println!("{}", c); // Output: ग
Go:
char := '\u0917'
fmt.Printf("%c\n", char) // Output: ग
CSS:
/* CSS content property */
.element::before {
content: "\000917"; /* 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%97
MD5:
c9b56ebff7dce1c5b2ec95b5a74f5932
SHA1:
d073d90f5cd815e26e07f961fe1a116a716d1850
Base64:
4KSX