C:
char c = '\u1028';
printf("%c\n", c); // Output: ဨ
JavaScript:
const char = '\u1028';
console.log(char); // Output: ဨ
Java:
char c = '\u1028';
System.out.println(c); // Output: ဨ
JSON:
{"text": "\u1028"} // Value: ဨ
Python:
char = '\u1028'
print(char) # Output: ဨ
Perl:
my $char = "\x{1028}";
print $char; # Output: ဨ
PHP:
$char = "\x{1028}";
echo $char; // Output: ဨ
Ruby:
char = "\u{1028}"
puts char # Output: ဨ
Rust:
let c = '\u{1028}';
println!("{}", c); // Output: ဨ
Go:
char := '\u1028'
fmt.Printf("%c\n", char) // Output: ဨ
CSS:
/* CSS content property */
.element::before {
content: "\001028"; /* 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%A8
MD5:
6e447216ae295a071053dfef1db8ac96
SHA1:
e6e1b8087e41d365cae85913175437dd707c36df
Base64:
4YCo