C:
char c = '\u1569';
printf("%c\n", c); // Output: ᕩ
JavaScript:
const char = '\u1569';
console.log(char); // Output: ᕩ
Java:
char c = '\u1569';
System.out.println(c); // Output: ᕩ
JSON:
{"text": "\u1569"} // Value: ᕩ
Python:
char = '\u1569'
print(char) # Output: ᕩ
Perl:
my $char = "\x{1569}";
print $char; # Output: ᕩ
PHP:
$char = "\x{1569}";
echo $char; // Output: ᕩ
Ruby:
char = "\u{1569}"
puts char # Output: ᕩ
Rust:
let c = '\u{1569}';
println!("{}", c); // Output: ᕩ
Go:
char := '\u1569'
fmt.Printf("%c\n", char) // Output: ᕩ
CSS:
/* CSS content property */
.element::before {
content: "\001569"; /* 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%A9
MD5:
7db5fed936bcc69860cfb7c76a2c41de
SHA1:
0e775f91411bba4482f586dda7f8d9f8be53ba79
Base64:
4ZWp