C:
char c = '\u1550';
printf("%c\n", c); // Output: ᕐ
JavaScript:
const char = '\u1550';
console.log(char); // Output: ᕐ
Java:
char c = '\u1550';
System.out.println(c); // Output: ᕐ
JSON:
{"text": "\u1550"} // Value: ᕐ
Python:
char = '\u1550'
print(char) # Output: ᕐ
Perl:
my $char = "\x{1550}";
print $char; # Output: ᕐ
PHP:
$char = "\x{1550}";
echo $char; // Output: ᕐ
Ruby:
char = "\u{1550}"
puts char # Output: ᕐ
Rust:
let c = '\u{1550}';
println!("{}", c); // Output: ᕐ
Go:
char := '\u1550'
fmt.Printf("%c\n", char) // Output: ᕐ
CSS:
/* CSS content property */
.element::before {
content: "\001550"; /* 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%95%90
MD5:
f29fa3fdfcb0fd8235a9c97544f8daaf
SHA1:
8acc1c4142c3a21f03b373e4a3f9a71fde0017a8
Base64:
4ZWQ