C:
char c = '\u1060';
printf("%c\n", c); // Output: ၠ
JavaScript:
const char = '\u1060';
console.log(char); // Output: ၠ
Java:
char c = '\u1060';
System.out.println(c); // Output: ၠ
JSON:
{"text": "\u1060"} // Value: ၠ
Python:
char = '\u1060'
print(char) # Output: ၠ
Perl:
my $char = "\x{1060}";
print $char; # Output: ၠ
PHP:
$char = "\x{1060}";
echo $char; // Output: ၠ
Ruby:
char = "\u{1060}"
puts char # Output: ၠ
Rust:
let c = '\u{1060}';
println!("{}", c); // Output: ၠ
Go:
char := '\u1060'
fmt.Printf("%c\n", char) // Output: ၠ
CSS:
/* CSS content property */
.element::before {
content: "\001060"; /* 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%A0
MD5:
deecb923d80771c6baba225287d8fac6
SHA1:
9d86237ea7705f98fb57afda90fafd47be7b28b9
Base64:
4YGg