Unicode Finder

"🖠" U+1F5A0(SIDEWAYS BLACK UP POINTING INDEX)

🖠
U+1F5A0
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
SIDEWAYS BLACK UP POINTING INDEX

Programming

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

Web

CSS
\01F5A0
HtmlDecimal
🖠
HtmlHexadecimal
🖠
Url
%F0%9F%96%A0

Code

MD5
53c0158efecd8cc410fcdbefc35e41ea
Sha1
a97a8693f04efaf87eb57554668e45c7655365d0
Base64
8J+WoA==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F5A0';
console.log(char);  // Output: 🖠

Java:

char c = '\u1F5A0';
System.out.println(c);  // Output: 🖠

JSON:

{"text": "\u1F5A0"}  // Value: 🖠

Python:

char = '\u1F5A0'
print(char)  # Output: 🖠

Perl:

my $char = "\x{1F5A0}";
print $char;  # Output: 🖠

PHP:

$char = "\x{1F5A0}";
echo $char;  // Output: 🖠

Ruby:

char = "\u{1F5A0}"
puts char  # Output: 🖠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128416;</p>  <!-- Display: 🖠 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5A0;</p>  <!-- Display: 🖠 -->

URL Encoding:

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

Encodings

MD5:

53c0158efecd8cc410fcdbefc35e41ea

SHA1:

a97a8693f04efaf87eb57554668e45c7655365d0

Base64:

8J+WoA==