C:
char c = '\u1015';
printf("%c\n", c); // Output: ပ
JavaScript:
const char = '\u1015';
console.log(char); // Output: ပ
Java:
char c = '\u1015';
System.out.println(c); // Output: ပ
JSON:
{"text": "\u1015"} // Value: ပ
Python:
char = '\u1015'
print(char) # Output: ပ
Perl:
my $char = "\x{1015}";
print $char; # Output: ပ
PHP:
$char = "\x{1015}";
echo $char; // Output: ပ
Ruby:
char = "\u{1015}"
puts char # Output: ပ
Rust:
let c = '\u{1015}';
println!("{}", c); // Output: ပ
Go:
char := '\u1015'
fmt.Printf("%c\n", char) // Output: ပ
CSS:
/* CSS content property */
.element::before {
content: "\001015"; /* 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%95
MD5:
60d802f1bd84c42ac2e1a126ae89809e
SHA1:
35f1a17b6e6233b2e6019f551ba5a2ce9087c451
Base64:
4YCV