Unicode Finder

"✔" U+2714(HEAVY CHECK MARK)

U+2714
Block Name
Dingbats
Name
HEAVY CHECK MARK

Programming

C
\u2714
JavaScript
\u2714
Java
\u2714
Json
\u2714
Python
\u2714
Perl
\x{2714}
PHP
\x{2714}
Ruby
\u{2714}
Rust
\u{2714}
Go
\u2714

Web

CSS
\002714
HtmlDecimal
✔
HtmlHexadecimal
✔
Url
%E2%9C%94

Code

MD5
7aca80d388a1b4221f0bf8443e660a8e
Sha1
3af51ed593899ba2f4345e83a99fcb232cae0245
Base64
4pyU

Usage Examples

Programming Languages

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: ✔

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002714";  /* Display: ✔ */
}

HTML Decimal:

<p>HTML decimal: &#10004;</p>  <!-- Display: ✔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2714;</p>  <!-- Display: ✔ -->

URL Encoding:

// ✔ URL encoding
https://unicodefinder.com/search.php?query=%E2%9C%94

Encodings

MD5:

7aca80d388a1b4221f0bf8443e660a8e

SHA1:

3af51ed593899ba2f4345e83a99fcb232cae0245

Base64:

4pyU