C:
char c = '\u1063';
printf("%c\n", c); // Output: ၣ
JavaScript:
const char = '\u1063';
console.log(char); // Output: ၣ
Java:
char c = '\u1063';
System.out.println(c); // Output: ၣ
JSON:
{"text": "\u1063"} // Value: ၣ
Python:
char = '\u1063'
print(char) # Output: ၣ
Perl:
my $char = "\x{1063}";
print $char; # Output: ၣ
PHP:
$char = "\x{1063}";
echo $char; // Output: ၣ
Ruby:
char = "\u{1063}"
puts char # Output: ၣ
Rust:
let c = '\u{1063}';
println!("{}", c); // Output: ၣ
Go:
char := '\u1063'
fmt.Printf("%c\n", char) // Output: ၣ
CSS:
/* CSS content property */
.element::before {
content: "\001063"; /* 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%A3
MD5:
d16b82de0166bf0a4375fd724a8da71b
SHA1:
8668579450f09982ecae65304fe9b0d9e14359e3
Base64:
4YGj