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