C:
char c = '\u1026';
printf("%c\n", c); // Output: ဦ
JavaScript:
const char = '\u1026';
console.log(char); // Output: ဦ
Java:
char c = '\u1026';
System.out.println(c); // Output: ဦ
JSON:
{"text": "\u1026"} // Value: ဦ
Python:
char = '\u1026'
print(char) # Output: ဦ
Perl:
my $char = "\x{1026}";
print $char; # Output: ဦ
PHP:
$char = "\x{1026}";
echo $char; // Output: ဦ
Ruby:
char = "\u{1026}"
puts char # Output: ဦ
Rust:
let c = '\u{1026}';
println!("{}", c); // Output: ဦ
Go:
char := '\u1026'
fmt.Printf("%c\n", char) // Output: ဦ
CSS:
/* CSS content property */
.element::before {
content: "\001026"; /* 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%A6
MD5:
5d0cc573a1b0477a95d85451d0bdd52f
SHA1:
d34f47c394f0f089da69354f0a2d1b345d35f34e
Base64:
4YCm