Unicode Finder

"✐" U+2710(UPPER RIGHT PENCIL)

U+2710
Block Name
Dingbats
Name
UPPER RIGHT PENCIL

Programming

C
\u2710
JavaScript
\u2710
Java
\u2710
Json
\u2710
Python
\u2710
Perl
\x{2710}
PHP
\x{2710}
Ruby
\u{2710}
Rust
\u{2710}
Go
\u2710

Web

CSS
\002710
HtmlDecimal
✐
HtmlHexadecimal
✐
Url
%E2%9C%90

Code

MD5
ab7f6d945d8113a8d47bec7c13e184a1
Sha1
70da33354915f14d26d2d029d9e4edd06ea1a432
Base64
4pyQ

Usage Examples

Programming Languages

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002710";  /* Display: ✐ */
}

HTML Decimal:

<p>HTML decimal: &#10000;</p>  <!-- Display: ✐ -->

HTML Hexadecimal:

<p>HTML hex: &#x2710;</p>  <!-- Display: ✐ -->

URL Encoding:

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

Encodings

MD5:

ab7f6d945d8113a8d47bec7c13e184a1

SHA1:

70da33354915f14d26d2d029d9e4edd06ea1a432

Base64:

4pyQ