C:
char c = '\u1030';
printf("%c\n", c); // Output: ူ
JavaScript:
const char = '\u1030';
console.log(char); // Output: ူ
Java:
char c = '\u1030';
System.out.println(c); // Output: ူ
JSON:
{"text": "\u1030"} // Value: ူ
Python:
char = '\u1030'
print(char) # Output: ူ
Perl:
my $char = "\x{1030}";
print $char; # Output: ူ
PHP:
$char = "\x{1030}";
echo $char; // Output: ူ
Ruby:
char = "\u{1030}"
puts char # Output: ူ
Rust:
let c = '\u{1030}';
println!("{}", c); // Output: ူ
Go:
char := '\u1030'
fmt.Printf("%c\n", char) // Output: ူ
CSS:
/* CSS content property */
.element::before {
content: "\001030"; /* 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%B0
MD5:
f4b578a956e89b1ead9962d446519d57
SHA1:
f75df671976cc6bae700ab80960a70a002447bb4
Base64:
4YCw