C:
char c = '\u0D9A';
printf("%c\n", c); // Output: ක
JavaScript:
const char = '\u0D9A';
console.log(char); // Output: ක
Java:
char c = '\u0D9A';
System.out.println(c); // Output: ක
JSON:
{"text": "\u0D9A"} // Value: ක
Python:
char = '\u0D9A'
print(char) # Output: ක
Perl:
my $char = "\x{0D9A}";
print $char; # Output: ක
PHP:
$char = "\x{0D9A}";
echo $char; // Output: ක
Ruby:
char = "\u{0D9A}"
puts char # Output: ක
Rust:
let c = '\u{D9A}';
println!("{}", c); // Output: ක
Go:
char := '\u0D9A'
fmt.Printf("%c\n", char) // Output: ක
CSS:
/* CSS content property */
.element::before {
content: "\000D9A"; /* 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%B6%9A
MD5:
3a1d3c58fca4d0fca31d93a395b78e81
SHA1:
5c071b0fc061117f9276654b672bd78ae4260950
Base64:
4Laa