Unicode Finder

"๐Ÿˆ" U+1F3C8(AMERICAN FOOTBALL)

๐Ÿˆ
U+1F3C8
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
AMERICAN FOOTBALL

Programming

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

Web

CSS
\01F3C8
HtmlDecimal
🏈
HtmlHexadecimal
🏈
Url
%F0%9F%8F%88

Code

MD5
f94c993f01b46f40c8b6b266bd1ea186
Sha1
6a192273277f6bd137e0e86128bf5bc73bd9c871
Base64
8J+PiA==

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F3C8"}  // Value: ๐Ÿˆ

Python:

char = '\u1F3C8'
print(char)  # Output: ๐Ÿˆ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F3C8}"
puts char  # Output: ๐Ÿˆ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

f94c993f01b46f40c8b6b266bd1ea186

SHA1:

6a192273277f6bd137e0e86128bf5bc73bd9c871

Base64:

8J+PiA==