C:
char c = '\u2758';
printf("%c\n", c); // Output: ❘
JavaScript:
const char = '\u2758';
console.log(char); // Output: ❘
Java:
char c = '\u2758';
System.out.println(c); // Output: ❘
JSON:
{"text": "\u2758"} // Value: ❘
Python:
char = '\u2758'
print(char) # Output: ❘
Perl:
my $char = "\x{2758}";
print $char; # Output: ❘
PHP:
$char = "\x{2758}";
echo $char; // Output: ❘
Ruby:
char = "\u{2758}"
puts char # Output: ❘
Rust:
let c = '\u{2758}';
println!("{}", c); // Output: ❘
Go:
char := '\u2758'
fmt.Printf("%c\n", char) // Output: ❘
CSS:
/* CSS content property */
.element::before {
content: "\002758"; /* 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%98
MD5:
bf46ded6a2f9c48161ea39bc3b998756
SHA1:
a770df89f0e498448f297b8e0fb2adb99e027d26
Base64:
4p2Y