C:
char c = '\u106B';
printf("%c\n", c); // Output: ၫ
JavaScript:
const char = '\u106B';
console.log(char); // Output: ၫ
Java:
char c = '\u106B';
System.out.println(c); // Output: ၫ
JSON:
{"text": "\u106B"} // Value: ၫ
Python:
char = '\u106B'
print(char) # Output: ၫ
Perl:
my $char = "\x{106B}";
print $char; # Output: ၫ
PHP:
$char = "\x{106B}";
echo $char; // Output: ၫ
Ruby:
char = "\u{106B}"
puts char # Output: ၫ
Rust:
let c = '\u{106B}';
println!("{}", c); // Output: ၫ
Go:
char := '\u106B'
fmt.Printf("%c\n", char) // Output: ၫ
CSS:
/* CSS content property */
.element::before {
content: "\00106B"; /* 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%81%AB
MD5:
bb53ed919894fbb1aa9967d44cd8f3f2
SHA1:
d44dccbe61f0b4567a70309a77d636c2f83299e2
Base64:
4YGr