Unicode Finder

"๐Ÿ–ฉ" U+1F5A9(POCKET CALCULATOR)

๐Ÿ–ฉ
U+1F5A9
Block Name
Miscellaneous Symbols and Pictographs
Name
POCKET CALCULATOR

Programming

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

Web

CSS
\01F5A9
HtmlDecimal
🖩
HtmlHexadecimal
🖩
Url
%F0%9F%96%A9

Code

MD5
c05ae46e0a28b3bacdca9d9b20c0c990
Sha1
26853880a17a11f50a1988ee40e50932dffd1028
Base64
8J+WqQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F5A9"}  // Value: ๐Ÿ–ฉ

Python:

char = '\u1F5A9'
print(char)  # Output: ๐Ÿ–ฉ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F5A9}"
puts char  # Output: ๐Ÿ–ฉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

c05ae46e0a28b3bacdca9d9b20c0c990

SHA1:

26853880a17a11f50a1988ee40e50932dffd1028

Base64:

8J+WqQ==