C:
char c = '\u1389';
printf("%c\n", c); // Output: ᎉ
JavaScript:
const char = '\u1389';
console.log(char); // Output: ᎉ
Java:
char c = '\u1389';
System.out.println(c); // Output: ᎉ
JSON:
{"text": "\u1389"} // Value: ᎉ
Python:
char = '\u1389'
print(char) # Output: ᎉ
Perl:
my $char = "\x{1389}";
print $char; # Output: ᎉ
PHP:
$char = "\x{1389}";
echo $char; // Output: ᎉ
Ruby:
char = "\u{1389}"
puts char # Output: ᎉ
Rust:
let c = '\u{1389}';
println!("{}", c); // Output: ᎉ
Go:
char := '\u1389'
fmt.Printf("%c\n", char) // Output: ᎉ
CSS:
/* CSS content property */
.element::before {
content: "\001389"; /* 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%8E%89
MD5:
be34c45354bd89cf9e582c04f592a4ad
SHA1:
b023963d3d72c416efc596fee1ddca30e8771a25
Base64:
4Y6J