C:
char c = '\u1062';
printf("%c\n", c); // Output: ၢ
JavaScript:
const char = '\u1062';
console.log(char); // Output: ၢ
Java:
char c = '\u1062';
System.out.println(c); // Output: ၢ
JSON:
{"text": "\u1062"} // Value: ၢ
Python:
char = '\u1062'
print(char) # Output: ၢ
Perl:
my $char = "\x{1062}";
print $char; # Output: ၢ
PHP:
$char = "\x{1062}";
echo $char; // Output: ၢ
Ruby:
char = "\u{1062}"
puts char # Output: ၢ
Rust:
let c = '\u{1062}';
println!("{}", c); // Output: ၢ
Go:
char := '\u1062'
fmt.Printf("%c\n", char) // Output: ၢ
CSS:
/* CSS content property */
.element::before {
content: "\001062"; /* 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%A2
MD5:
47b4d53156d055990a502f3f47b08249
SHA1:
af150efbafe1015a7f6fb154e9dd538ada215608
Base64:
4YGi