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