C:
char c = '\u0D15';
printf("%c\n", c); // Output: ക
JavaScript:
const char = '\u0D15';
console.log(char); // Output: ക
Java:
char c = '\u0D15';
System.out.println(c); // Output: ക
JSON:
{"text": "\u0D15"} // Value: ക
Python:
char = '\u0D15'
print(char) # Output: ക
Perl:
my $char = "\x{0D15}";
print $char; # Output: ക
PHP:
$char = "\x{0D15}";
echo $char; // Output: ക
Ruby:
char = "\u{0D15}"
puts char # Output: ക
Rust:
let c = '\u{D15}';
println!("{}", c); // Output: ക
Go:
char := '\u0D15'
fmt.Printf("%c\n", char) // Output: ക
CSS:
/* CSS content property */
.element::before {
content: "\000D15"; /* 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%B4%95
MD5:
6c0e1a8bee8ff9cbd80a2351fde277e5
SHA1:
0c19ae9688378d3d07ae7fe0b8f030933547e51e
Base64:
4LSV