Unicode Finder

"🎀" U+1F380(RIBBON)

🎀
U+1F380
Název Bloku
Miscellaneous Symbols and Pictographs
Název
RIBBON

Programming

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

Web

CSS
\01F380
HtmlDecimal
🎀
HtmlHexadecimal
🎀
Url
%F0%9F%8E%80

Code

MD5
746a37d5c52e257ef066dbc5a2ca91ab
Sha1
d0051001b21cb057a1e46ea25561f724292293d5
Base64
8J+OgA==

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u1F380';
console.log(char);  // Output: 🎀

Java:

char c = '\u1F380';
System.out.println(c);  // Output: 🎀

JSON:

{"text": "\u1F380"}  // Value: 🎀

Python:

char = '\u1F380'
print(char)  # Output: 🎀

Perl:

my $char = "\x{1F380}";
print $char;  # Output: 🎀

PHP:

$char = "\x{1F380}";
echo $char;  // Output: 🎀

Ruby:

char = "\u{1F380}"
puts char  # Output: 🎀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127872;</p>  <!-- Display: 🎀 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F380;</p>  <!-- Display: 🎀 -->

URL Encoding:

// 🎀 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8E%80

Encodings

MD5:

746a37d5c52e257ef066dbc5a2ca91ab

SHA1:

d0051001b21cb057a1e46ea25561f724292293d5

Base64:

8J+OgA==