Unicode Finder

"⛏" U+26CF(PICK)

U+26CF
Block Name
Miscellaneous Symbols
Name
PICK

Programming

C
\u26CF
JavaScript
\u26CF
Java
\u26CF
Json
\u26CF
Python
\u26CF
Perl
\x{26CF}
PHP
\x{26CF}
Ruby
\u{26CF}
Rust
\u{26CF}
Go
\u26CF

Web

CSS
\0026CF
HtmlDecimal
⛏
HtmlHexadecimal
⛏
Url
%E2%9B%8F

Code

MD5
9ad58a0ec34e6005913da04ba80f649f
Sha1
47ee403cf81849a4381aaf8782be7e8477a2f9f4
Base64
4puP

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26CF';
console.log(char);  // Output: ⛏

Java:

char c = '\u26CF';
System.out.println(c);  // Output: ⛏

JSON:

{"text": "\u26CF"}  // Value: ⛏

Python:

char = '\u26CF'
print(char)  # Output: ⛏

Perl:

my $char = "\x{26CF}";
print $char;  # Output: ⛏

PHP:

$char = "\x{26CF}";
echo $char;  // Output: ⛏

Ruby:

char = "\u{26CF}"
puts char  # Output: ⛏

Rust:

let c = '\u{26CF}';
println!("{}", c);  // Output: ⛏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0026CF";  /* Display: ⛏ */
}

HTML Decimal:

<p>HTML decimal: &#9935;</p>  <!-- Display: ⛏ -->

HTML Hexadecimal:

<p>HTML hex: &#x26CF;</p>  <!-- Display: ⛏ -->

URL Encoding:

// ⛏ URL encoding
https://unicodefinder.com/search.php?query=%E2%9B%8F

Encodings

MD5:

9ad58a0ec34e6005913da04ba80f649f

SHA1:

47ee403cf81849a4381aaf8782be7e8477a2f9f4

Base64:

4puP