Unicode Finder

"๐Ÿ–œ" U+1F59C(BLACK LEFT POINTING BACKHAND INDEX)

๐Ÿ–œ
U+1F59C
Block Name
Miscellaneous Symbols and Pictographs
Name
BLACK LEFT POINTING BACKHAND INDEX

Programming

C
\u1F59C
JavaScript
\u1F59C
Java
\u1F59C
Json
\u1F59C
Python
\u1F59C
Perl
\x{1F59C}
PHP
\x{1F59C}
Ruby
\u{1F59C}
Rust
\u{1F59C}
Go
\u1F59C

Web

CSS
\01F59C
HtmlDecimal
🖜
HtmlHexadecimal
🖜
Url
%F0%9F%96%9C

Code

MD5
ff25b02d247ef432082ae00eeeb4c21a
Sha1
12b83c2c47f91c4a94e84cf2e3889c18bc5298ab
Base64
8J+WnA==

Usage Examples

Programming Languages

C:

char c = '\u1F59C';
printf("%c\n", c);  // Output: ๐Ÿ–œ

JavaScript:

const char = '\u1F59C';
console.log(char);  // Output: ๐Ÿ–œ

Java:

char c = '\u1F59C';
System.out.println(c);  // Output: ๐Ÿ–œ

JSON:

{"text": "\u1F59C"}  // Value: ๐Ÿ–œ

Python:

char = '\u1F59C'
print(char)  # Output: ๐Ÿ–œ

Perl:

my $char = "\x{1F59C}";
print $char;  # Output: ๐Ÿ–œ

PHP:

$char = "\x{1F59C}";
echo $char;  // Output: ๐Ÿ–œ

Ruby:

char = "\u{1F59C}"
puts char  # Output: ๐Ÿ–œ

Rust:

let c = '\u{1F59C}';
println!("{}", c);  // Output: ๐Ÿ–œ

Go:

char := '\u1F59C'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ–œ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F59C";  /* Display: ๐Ÿ–œ */
}

HTML Decimal:

<p>HTML decimal: &#128412;</p>  <!-- Display: ๐Ÿ–œ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F59C;</p>  <!-- Display: ๐Ÿ–œ -->

URL Encoding:

// ๐Ÿ–œ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%9C

Encodings

MD5:

ff25b02d247ef432082ae00eeeb4c21a

SHA1:

12b83c2c47f91c4a94e84cf2e3889c18bc5298ab

Base64:

8J+WnA==