Unicode Finder

"πŸ—±" U+1F5F1(LIGHTNING MOOD BUBBLE)

πŸ—±
U+1F5F1
Block Name
Miscellaneous Symbols and Pictographs
Name
LIGHTNING MOOD BUBBLE

Programming

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

Web

CSS
\01F5F1
HtmlDecimal
🗱
HtmlHexadecimal
🗱
Url
%F0%9F%97%B1

Code

MD5
c901dce73dbbe6e3e4d5146857b62d38
Sha1
48844ff3696fc05ac7707a6d0947ad18e708111a
Base64
8J+XsQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F5F1"}  // Value: πŸ—±

Python:

char = '\u1F5F1'
print(char)  # Output: πŸ—±

Perl:

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

PHP:

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

Ruby:

char = "\u{1F5F1}"
puts char  # Output: πŸ—±

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

c901dce73dbbe6e3e4d5146857b62d38

SHA1:

48844ff3696fc05ac7707a6d0947ad18e708111a

Base64:

8J+XsQ==