C:
char c = '\u0786';
printf("%c\n", c); // Output: ކ
JavaScript:
const char = '\u0786';
console.log(char); // Output: ކ
Java:
char c = '\u0786';
System.out.println(c); // Output: ކ
JSON:
{"text": "\u0786"} // Value: ކ
Python:
char = '\u0786'
print(char) # Output: ކ
Perl:
my $char = "\x{0786}";
print $char; # Output: ކ
PHP:
$char = "\x{0786}";
echo $char; // Output: ކ
Ruby:
char = "\u{0786}"
puts char # Output: ކ
Rust:
let c = '\u{786}';
println!("{}", c); // Output: ކ
Go:
char := '\u0786'
fmt.Printf("%c\n", char) // Output: ކ
CSS:
/* CSS content property */
.element::before {
content: "\000786"; /* 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=%DE%86
MD5:
1fba07032600c3082db1598054a11328
SHA1:
34fc685de99307f0cc028636b747f5ed52a9e678
Base64:
3oY=