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