C:
char c = '\u1011';
printf("%c\n", c); // Output: ထ
JavaScript:
const char = '\u1011';
console.log(char); // Output: ထ
Java:
char c = '\u1011';
System.out.println(c); // Output: ထ
JSON:
{"text": "\u1011"} // Value: ထ
Python:
char = '\u1011'
print(char) # Output: ထ
Perl:
my $char = "\x{1011}";
print $char; # Output: ထ
PHP:
$char = "\x{1011}";
echo $char; // Output: ထ
Ruby:
char = "\u{1011}"
puts char # Output: ထ
Rust:
let c = '\u{1011}';
println!("{}", c); // Output: ထ
Go:
char := '\u1011'
fmt.Printf("%c\n", char) // Output: ထ
CSS:
/* CSS content property */
.element::before {
content: "\001011"; /* 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%91
MD5:
442c6f229a56e69a0c23bef10f195768
SHA1:
18889b25bc4500b496e25de8942b65d1673846fb
Base64:
4YCR