Unicode Finder

"🖯" U+1F5AF(ONE BUTTON MOUSE)

🖯
U+1F5AF
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
ONE BUTTON MOUSE

Programming

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

Web

CSS
\01F5AF
HtmlDecimal
🖯
HtmlHexadecimal
🖯
Url
%F0%9F%96%AF

Code

MD5
7ea78f740ca051649a4acdaf531804fc
Sha1
e4a42be3eec364e7b7c3ad71b7b8a6f22c54c5c0
Base64
8J+Wrw==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F5AF';
console.log(char);  // Output: 🖯

Java:

char c = '\u1F5AF';
System.out.println(c);  // Output: 🖯

JSON:

{"text": "\u1F5AF"}  // Value: 🖯

Python:

char = '\u1F5AF'
print(char)  # Output: 🖯

Perl:

my $char = "\x{1F5AF}";
print $char;  # Output: 🖯

PHP:

$char = "\x{1F5AF}";
echo $char;  // Output: 🖯

Ruby:

char = "\u{1F5AF}"
puts char  # Output: 🖯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128431;</p>  <!-- Display: 🖯 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5AF;</p>  <!-- Display: 🖯 -->

URL Encoding:

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

Encodings

MD5:

7ea78f740ca051649a4acdaf531804fc

SHA1:

e4a42be3eec364e7b7c3ad71b7b8a6f22c54c5c0

Base64:

8J+Wrw==