Unicode Finder

"✄" U+2704(WHITE SCISSORS)

U+2704
Block Name
Dingbats
Name
WHITE SCISSORS

Programming

C
\u2704
JavaScript
\u2704
Java
\u2704
Json
\u2704
Python
\u2704
Perl
\x{2704}
PHP
\x{2704}
Ruby
\u{2704}
Rust
\u{2704}
Go
\u2704

Web

CSS
\002704
HtmlDecimal
✄
HtmlHexadecimal
✄
Url
%E2%9C%84

Code

MD5
748aff1a6058b96d24661161cfdb1c63
Sha1
916f00bd964df43f507c664be0ebd2bd652b3cf8
Base64
4pyE

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2704';
console.log(char);  // Output: ✄

Java:

char c = '\u2704';
System.out.println(c);  // Output: ✄

JSON:

{"text": "\u2704"}  // Value: ✄

Python:

char = '\u2704'
print(char)  # Output: ✄

Perl:

my $char = "\x{2704}";
print $char;  # Output: ✄

PHP:

$char = "\x{2704}";
echo $char;  // Output: ✄

Ruby:

char = "\u{2704}"
puts char  # Output: ✄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002704";  /* Display: ✄ */
}

HTML Decimal:

<p>HTML decimal: &#9988;</p>  <!-- Display: ✄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2704;</p>  <!-- Display: ✄ -->

URL Encoding:

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

Encodings

MD5:

748aff1a6058b96d24661161cfdb1c63

SHA1:

916f00bd964df43f507c664be0ebd2bd652b3cf8

Base64:

4pyE