C:
char c = '\u2712';
printf("%c\n", c); // Output: ✒
JavaScript:
const char = '\u2712';
console.log(char); // Output: ✒
Java:
char c = '\u2712';
System.out.println(c); // Output: ✒
JSON:
{"text": "\u2712"} // Value: ✒
Python:
char = '\u2712'
print(char) # Output: ✒
Perl:
my $char = "\x{2712}";
print $char; # Output: ✒
PHP:
$char = "\x{2712}";
echo $char; // Output: ✒
Ruby:
char = "\u{2712}"
puts char # Output: ✒
Rust:
let c = '\u{2712}';
println!("{}", c); // Output: ✒
Go:
char := '\u2712'
fmt.Printf("%c\n", char) // Output: ✒
CSS:
/* CSS content property */
.element::before {
content: "\002712"; /* 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%92
MD5:
6c96fc0c5f957d7ef235bba2bc74fad0
SHA1:
ca9ba8d29dbe962fa5d569ebac279e023543e108
Base64:
4pyS