Unicode Finder

"✅" U+2705(WHITE HEAVY CHECK MARK)

U+2705
Block Name
Dingbats
Name
WHITE HEAVY CHECK MARK

Programming

C
\u2705
JavaScript
\u2705
Java
\u2705
Json
\u2705
Python
\u2705
Perl
\x{2705}
PHP
\x{2705}
Ruby
\u{2705}
Rust
\u{2705}
Go
\u2705

Web

CSS
\002705
HtmlDecimal
✅
HtmlHexadecimal
✅
Url
%E2%9C%85

Code

MD5
fa3bf6e4f7d17c9beb330c0d59fcffad
Sha1
1cee944946bff8d51e351ab4c7bd42a5de041a84
Base64
4pyF

Usage Examples

Programming Languages

C:

char c = '\u2705';
printf("%c\n", c);  // Output: ✅

JavaScript:

const char = '\u2705';
console.log(char);  // Output: ✅

Java:

char c = '\u2705';
System.out.println(c);  // Output: ✅

JSON:

{"text": "\u2705"}  // Value: ✅

Python:

char = '\u2705'
print(char)  # Output: ✅

Perl:

my $char = "\x{2705}";
print $char;  # Output: ✅

PHP:

$char = "\x{2705}";
echo $char;  // Output: ✅

Ruby:

char = "\u{2705}"
puts char  # Output: ✅

Rust:

let c = '\u{2705}';
println!("{}", c);  // Output: ✅

Go:

char := '\u2705'
fmt.Printf("%c\n", char)  // Output: ✅

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002705";  /* Display: ✅ */
}

HTML Decimal:

<p>HTML decimal: &#9989;</p>  <!-- Display: ✅ -->

HTML Hexadecimal:

<p>HTML hex: &#x2705;</p>  <!-- Display: ✅ -->

URL Encoding:

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

Encodings

MD5:

fa3bf6e4f7d17c9beb330c0d59fcffad

SHA1:

1cee944946bff8d51e351ab4c7bd42a5de041a84

Base64:

4pyF