C:
char c = '\u1780';
printf("%c\n", c); // Output: ក
JavaScript:
const char = '\u1780';
console.log(char); // Output: ក
Java:
char c = '\u1780';
System.out.println(c); // Output: ក
JSON:
{"text": "\u1780"} // Value: ក
Python:
char = '\u1780'
print(char) # Output: ក
Perl:
my $char = "\x{1780}";
print $char; # Output: ក
PHP:
$char = "\x{1780}";
echo $char; // Output: ក
Ruby:
char = "\u{1780}"
puts char # Output: ក
Rust:
let c = '\u{1780}';
println!("{}", c); // Output: ក
Go:
char := '\u1780'
fmt.Printf("%c\n", char) // Output: ក
CSS:
/* CSS content property */
.element::before {
content: "\001780"; /* 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=%E1%9E%80
MD5:
5e044c31b35c6fcb9d00626bd191be0d
SHA1:
ddfe604b4ec70dd98b611252286cf1049a957d60
Base64:
4Z6A