C:
char c = '\u1021';
printf("%c\n", c); // Output: အ
JavaScript:
const char = '\u1021';
console.log(char); // Output: အ
Java:
char c = '\u1021';
System.out.println(c); // Output: အ
JSON:
{"text": "\u1021"} // Value: အ
Python:
char = '\u1021'
print(char) # Output: အ
Perl:
my $char = "\x{1021}";
print $char; # Output: အ
PHP:
$char = "\x{1021}";
echo $char; // Output: အ
Ruby:
char = "\u{1021}"
puts char # Output: အ
Rust:
let c = '\u{1021}';
println!("{}", c); // Output: အ
Go:
char := '\u1021'
fmt.Printf("%c\n", char) // Output: အ
CSS:
/* CSS content property */
.element::before {
content: "\001021"; /* 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%A1
MD5:
e079c0ff29b6f81d942bb7301a44cf97
SHA1:
2aae54b7e407ae4bd777d2da5807f426c552fda9
Base64:
4YCh