C:
char c = '\u2743';
printf("%c\n", c); // Output: ❃
JavaScript:
const char = '\u2743';
console.log(char); // Output: ❃
Java:
char c = '\u2743';
System.out.println(c); // Output: ❃
JSON:
{"text": "\u2743"} // Value: ❃
Python:
char = '\u2743'
print(char) # Output: ❃
Perl:
my $char = "\x{2743}";
print $char; # Output: ❃
PHP:
$char = "\x{2743}";
echo $char; // Output: ❃
Ruby:
char = "\u{2743}"
puts char # Output: ❃
Rust:
let c = '\u{2743}';
println!("{}", c); // Output: ❃
Go:
char := '\u2743'
fmt.Printf("%c\n", char) // Output: ❃
CSS:
/* CSS content property */
.element::before {
content: "\002743"; /* 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%9D%83
MD5:
2c2f1cca087915eff2a2e0e1db78436b
SHA1:
7236924b1a904a54656c64bfaf7351cfba3f4dc7
Base64:
4p2D