C:
char c = '\u1005';
printf("%c\n", c); // Output: စ
JavaScript:
const char = '\u1005';
console.log(char); // Output: စ
Java:
char c = '\u1005';
System.out.println(c); // Output: စ
JSON:
{"text": "\u1005"} // Value: စ
Python:
char = '\u1005'
print(char) # Output: စ
Perl:
my $char = "\x{1005}";
print $char; # Output: စ
PHP:
$char = "\x{1005}";
echo $char; // Output: စ
Ruby:
char = "\u{1005}"
puts char # Output: စ
Rust:
let c = '\u{1005}';
println!("{}", c); // Output: စ
Go:
char := '\u1005'
fmt.Printf("%c\n", char) // Output: စ
CSS:
/* CSS content property */
.element::before {
content: "\001005"; /* 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%80%85
MD5:
ec12a78791154507bd93e1aabebcbb11
SHA1:
e24822fd7af9ae3bad2259377f04c30fa1440f56
Base64:
4YCF