C:
char c = '\u0995';
printf("%c\n", c); // Output: ক
JavaScript:
const char = '\u0995';
console.log(char); // Output: ক
Java:
char c = '\u0995';
System.out.println(c); // Output: ক
JSON:
{"text": "\u0995"} // Value: ক
Python:
char = '\u0995'
print(char) # Output: ক
Perl:
my $char = "\x{0995}";
print $char; # Output: ক
PHP:
$char = "\x{0995}";
echo $char; // Output: ক
Ruby:
char = "\u{0995}"
puts char # Output: ক
Rust:
let c = '\u{995}';
println!("{}", c); // Output: ক
Go:
char := '\u0995'
fmt.Printf("%c\n", char) // Output: ক
CSS:
/* CSS content property */
.element::before {
content: "\000995"; /* 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%A6%95
MD5:
73be0dedb255462b6a2654629e95e3f0
SHA1:
1ff4cde5ad67239bdb22373349a5eccf0ec422f0
Base64:
4KaV