Unicode Finder

"๐Ÿ" U+1F3C1(CHEQUERED FLAG)

๐Ÿ
U+1F3C1
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
CHEQUERED FLAG

Programming

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

Web

CSS
\01F3C1
HtmlDecimal
🏁
HtmlHexadecimal
🏁
Url
%F0%9F%8F%81

Code

MD5
5b6cc46b7619b56d85548b5d3905436e
Sha1
8a23ac991a50794fb0561f86ac1dd67b1eec2c9a
Base64
8J+PgQ==

Esempi di Utilizzo

Programming Languages

C:

char c = '\u1F3C1';
printf("%c\n", c);  // Output: ๐Ÿ

JavaScript:

const char = '\u1F3C1';
console.log(char);  // Output: ๐Ÿ

Java:

char c = '\u1F3C1';
System.out.println(c);  // Output: ๐Ÿ

JSON:

{"text": "\u1F3C1"}  // Value: ๐Ÿ

Python:

char = '\u1F3C1'
print(char)  # Output: ๐Ÿ

Perl:

my $char = "\x{1F3C1}";
print $char;  # Output: ๐Ÿ

PHP:

$char = "\x{1F3C1}";
echo $char;  // Output: ๐Ÿ

Ruby:

char = "\u{1F3C1}"
puts char  # Output: ๐Ÿ

Rust:

let c = '\u{1F3C1}';
println!("{}", c);  // Output: ๐Ÿ

Go:

char := '\u1F3C1'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F3C1";  /* Display: ๐Ÿ */
}

HTML Decimal:

<p>HTML decimal: &#127937;</p>  <!-- Display: ๐Ÿ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3C1;</p>  <!-- Display: ๐Ÿ -->

URL Encoding:

// ๐Ÿ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%81

Encodings

MD5:

5b6cc46b7619b56d85548b5d3905436e

SHA1:

8a23ac991a50794fb0561f86ac1dd67b1eec2c9a

Base64:

8J+PgQ==