Unicode Finder

"πŸ’±" U+1F4B1(CURRENCY EXCHANGE)

πŸ’±
U+1F4B1
Block Name
Miscellaneous Symbols and Pictographs
Name
CURRENCY EXCHANGE

Programming

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

Web

CSS
\01F4B1
HtmlDecimal
💱
HtmlHexadecimal
💱
Url
%F0%9F%92%B1

Code

MD5
6a5acc1b31df5ba1d728bb5c9d7f6ba4
Sha1
48b2ae4823f1f916e478904dd88fbb8961c36475
Base64
8J+SsQ==

Usage Examples

Programming Languages

C:

char c = '\u1F4B1';
printf("%c\n", c);  // Output: πŸ’±

JavaScript:

const char = '\u1F4B1';
console.log(char);  // Output: πŸ’±

Java:

char c = '\u1F4B1';
System.out.println(c);  // Output: πŸ’±

JSON:

{"text": "\u1F4B1"}  // Value: πŸ’±

Python:

char = '\u1F4B1'
print(char)  # Output: πŸ’±

Perl:

my $char = "\x{1F4B1}";
print $char;  # Output: πŸ’±

PHP:

$char = "\x{1F4B1}";
echo $char;  // Output: πŸ’±

Ruby:

char = "\u{1F4B1}"
puts char  # Output: πŸ’±

Rust:

let c = '\u{1F4B1}';
println!("{}", c);  // Output: πŸ’±

Go:

char := '\u1F4B1'
fmt.Printf("%c\n", char)  // Output: πŸ’±

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4B1";  /* Display: πŸ’± */
}

HTML Decimal:

<p>HTML decimal: &#128177;</p>  <!-- Display: πŸ’± -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4B1;</p>  <!-- Display: πŸ’± -->

URL Encoding:

// πŸ’± URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%92%B1

Encodings

MD5:

6a5acc1b31df5ba1d728bb5c9d7f6ba4

SHA1:

48b2ae4823f1f916e478904dd88fbb8961c36475

Base64:

8J+SsQ==