C:
char c = '\u105A';
printf("%c\n", c); // Output: ၚ
JavaScript:
const char = '\u105A';
console.log(char); // Output: ၚ
Java:
char c = '\u105A';
System.out.println(c); // Output: ၚ
JSON:
{"text": "\u105A"} // Value: ၚ
Python:
char = '\u105A'
print(char) # Output: ၚ
Perl:
my $char = "\x{105A}";
print $char; # Output: ၚ
PHP:
$char = "\x{105A}";
echo $char; // Output: ၚ
Ruby:
char = "\u{105A}"
puts char # Output: ၚ
Rust:
let c = '\u{105A}';
println!("{}", c); // Output: ၚ
Go:
char := '\u105A'
fmt.Printf("%c\n", char) // Output: ၚ
CSS:
/* CSS content property */
.element::before {
content: "\00105A"; /* 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%9A
MD5:
10f05a3272c28a6429750973ca4e6202
SHA1:
739e407ba127ecba5d9f28e7a92490f70b440f2a
Base64:
4YGa