Unicode Finder

"🖙" U+1F599(SIDEWAYS WHITE RIGHT POINTING INDEX)

🖙
U+1F599
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
SIDEWAYS WHITE RIGHT POINTING INDEX

Programming

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

Web

CSS
\01F599
HtmlDecimal
🖙
HtmlHexadecimal
🖙
Url
%F0%9F%96%99

Code

MD5
1a773ea09e877a8d1dcc31d8501cc160
Sha1
c4f68757403439702ac1b44281e6f81c30bf4471
Base64
8J+WmQ==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F599';
console.log(char);  // Output: 🖙

Java:

char c = '\u1F599';
System.out.println(c);  // Output: 🖙

JSON:

{"text": "\u1F599"}  // Value: 🖙

Python:

char = '\u1F599'
print(char)  # Output: 🖙

Perl:

my $char = "\x{1F599}";
print $char;  # Output: 🖙

PHP:

$char = "\x{1F599}";
echo $char;  // Output: 🖙

Ruby:

char = "\u{1F599}"
puts char  # Output: 🖙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128409;</p>  <!-- Display: 🖙 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F599;</p>  <!-- Display: 🖙 -->

URL Encoding:

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

Encodings

MD5:

1a773ea09e877a8d1dcc31d8501cc160

SHA1:

c4f68757403439702ac1b44281e6f81c30bf4471

Base64:

8J+WmQ==