Unicode Finder

"🖟" U+1F59F(SIDEWAYS WHITE DOWN POINTING INDEX)

🖟
U+1F59F
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
SIDEWAYS WHITE DOWN POINTING INDEX

Programming

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

Web

CSS
\01F59F
HtmlDecimal
🖟
HtmlHexadecimal
🖟
Url
%F0%9F%96%9F

Code

MD5
00fdf256a7d9ec09a485839ab4956898
Sha1
505c43c1cca164d2a1d16f03181197a2b06577e1
Base64
8J+Wnw==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F59F';
console.log(char);  // Output: 🖟

Java:

char c = '\u1F59F';
System.out.println(c);  // Output: 🖟

JSON:

{"text": "\u1F59F"}  // Value: 🖟

Python:

char = '\u1F59F'
print(char)  # Output: 🖟

Perl:

my $char = "\x{1F59F}";
print $char;  # Output: 🖟

PHP:

$char = "\x{1F59F}";
echo $char;  // Output: 🖟

Ruby:

char = "\u{1F59F}"
puts char  # Output: 🖟

Rust:

let c = '\u{1F59F}';
println!("{}", c);  // Output: 🖟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F59F";  /* Display: 🖟 */
}

HTML Decimal:

<p>HTML decimal: &#128415;</p>  <!-- Display: 🖟 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F59F;</p>  <!-- Display: 🖟 -->

URL Encoding:

// 🖟 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%9F

Encodings

MD5:

00fdf256a7d9ec09a485839ab4956898

SHA1:

505c43c1cca164d2a1d16f03181197a2b06577e1

Base64:

8J+Wnw==