Unicode Finder

"🎪" U+1F3AA(CIRCUS TENT)

🎪
U+1F3AA
Název Bloku
Miscellaneous Symbols and Pictographs
Název
CIRCUS TENT

Programming

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

Web

CSS
\01F3AA
HtmlDecimal
🎪
HtmlHexadecimal
🎪
Url
%F0%9F%8E%AA

Code

MD5
573828f5bd23dac749ae878c06d0e2a1
Sha1
f4a082986dd3678510e6f879bb9bc69e0abd617c
Base64
8J+Oqg==

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u1F3AA';
console.log(char);  // Output: 🎪

Java:

char c = '\u1F3AA';
System.out.println(c);  // Output: 🎪

JSON:

{"text": "\u1F3AA"}  // Value: 🎪

Python:

char = '\u1F3AA'
print(char)  # Output: 🎪

Perl:

my $char = "\x{1F3AA}";
print $char;  # Output: 🎪

PHP:

$char = "\x{1F3AA}";
echo $char;  // Output: 🎪

Ruby:

char = "\u{1F3AA}"
puts char  # Output: 🎪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127914;</p>  <!-- Display: 🎪 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3AA;</p>  <!-- Display: 🎪 -->

URL Encoding:

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

Encodings

MD5:

573828f5bd23dac749ae878c06d0e2a1

SHA1:

f4a082986dd3678510e6f879bb9bc69e0abd617c

Base64:

8J+Oqg==