Unicode Finder

"💸" U+1F4B8(MONEY WITH WINGS)

💸
U+1F4B8
بلاک کا نام
Miscellaneous Symbols and Pictographs
نام
MONEY WITH WINGS

Programming

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

Web

CSS
\01F4B8
HtmlDecimal
💸
HtmlHexadecimal
💸
Url
%F0%9F%92%B8

Code

MD5
29b560b26c8b29c9da5c324ef5d127c2
Sha1
f61a2da6307abd5e20ef7e2860b04469b5332450
Base64
8J+SuA==

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u1F4B8';
console.log(char);  // Output: 💸

Java:

char c = '\u1F4B8';
System.out.println(c);  // Output: 💸

JSON:

{"text": "\u1F4B8"}  // Value: 💸

Python:

char = '\u1F4B8'
print(char)  # Output: 💸

Perl:

my $char = "\x{1F4B8}";
print $char;  # Output: 💸

PHP:

$char = "\x{1F4B8}";
echo $char;  // Output: 💸

Ruby:

char = "\u{1F4B8}"
puts char  # Output: 💸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128184;</p>  <!-- Display: 💸 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4B8;</p>  <!-- Display: 💸 -->

URL Encoding:

// 💸 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%92%B8

Encodings

MD5:

29b560b26c8b29c9da5c324ef5d127c2

SHA1:

f61a2da6307abd5e20ef7e2860b04469b5332450

Base64:

8J+SuA==