C:
char c = '\u1056';
printf("%c\n", c); // Output: ၖ
JavaScript:
const char = '\u1056';
console.log(char); // Output: ၖ
Java:
char c = '\u1056';
System.out.println(c); // Output: ၖ
JSON:
{"text": "\u1056"} // Value: ၖ
Python:
char = '\u1056'
print(char) # Output: ၖ
Perl:
my $char = "\x{1056}";
print $char; # Output: ၖ
PHP:
$char = "\x{1056}";
echo $char; // Output: ၖ
Ruby:
char = "\u{1056}"
puts char # Output: ၖ
Rust:
let c = '\u{1056}';
println!("{}", c); // Output: ၖ
Go:
char := '\u1056'
fmt.Printf("%c\n", char) // Output: ၖ
CSS:
/* CSS content property */
.element::before {
content: "\001056"; /* 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%96
MD5:
8075fcaa524dee3cc7e869270318f846
SHA1:
2d4f17a10b6cd4799e44c6dd8dab38c9f27c3523
Base64:
4YGW