C:
char c = '\u2710';
printf("%c\n", c); // Output: ✐
JavaScript:
const char = '\u2710';
console.log(char); // Output: ✐
Java:
char c = '\u2710';
System.out.println(c); // Output: ✐
JSON:
{"text": "\u2710"} // Value: ✐
Python:
char = '\u2710'
print(char) # Output: ✐
Perl:
my $char = "\x{2710}";
print $char; # Output: ✐
PHP:
$char = "\x{2710}";
echo $char; // Output: ✐
Ruby:
char = "\u{2710}"
puts char # Output: ✐
Rust:
let c = '\u{2710}';
println!("{}", c); // Output: ✐
Go:
char := '\u2710'
fmt.Printf("%c\n", char) // Output: ✐
CSS:
/* CSS content property */
.element::before {
content: "\002710"; /* 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%9C%90
MD5:
ab7f6d945d8113a8d47bec7c13e184a1
SHA1:
70da33354915f14d26d2d029d9e4edd06ea1a432
Base64:
4pyQ