C:
char c = '\u2761';
printf("%c\n", c); // Output: ❡
JavaScript:
const char = '\u2761';
console.log(char); // Output: ❡
Java:
char c = '\u2761';
System.out.println(c); // Output: ❡
JSON:
{"text": "\u2761"} // Value: ❡
Python:
char = '\u2761'
print(char) # Output: ❡
Perl:
my $char = "\x{2761}";
print $char; # Output: ❡
PHP:
$char = "\x{2761}";
echo $char; // Output: ❡
Ruby:
char = "\u{2761}"
puts char # Output: ❡
Rust:
let c = '\u{2761}';
println!("{}", c); // Output: ❡
Go:
char := '\u2761'
fmt.Printf("%c\n", char) // Output: ❡
CSS:
/* CSS content property */
.element::before {
content: "\002761"; /* 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%A1
MD5:
1b2b023c1fc381f1ef4e33bb6f1d6a3a
SHA1:
599f6eff2d0c26c9b8349bcb51a926b2da14489b
Base64:
4p2h