C:
char c = '\u2756';
printf("%c\n", c); // Output: ❖
JavaScript:
const char = '\u2756';
console.log(char); // Output: ❖
Java:
char c = '\u2756';
System.out.println(c); // Output: ❖
JSON:
{"text": "\u2756"} // Value: ❖
Python:
char = '\u2756'
print(char) # Output: ❖
Perl:
my $char = "\x{2756}";
print $char; # Output: ❖
PHP:
$char = "\x{2756}";
echo $char; // Output: ❖
Ruby:
char = "\u{2756}"
puts char # Output: ❖
Rust:
let c = '\u{2756}';
println!("{}", c); // Output: ❖
Go:
char := '\u2756'
fmt.Printf("%c\n", char) // Output: ❖
CSS:
/* CSS content property */
.element::before {
content: "\002756"; /* 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%96
MD5:
3c743ee0c3f814ce5e98bc5981160f57
SHA1:
2eb463db2cef0b72c1bc78c961434776340a932b
Base64:
4p2W