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