Unicode Finder

"🎬" U+1F3AC(CLAPPER BOARD)

🎬
U+1F3AC
Název Bloku
Miscellaneous Symbols and Pictographs
Název
CLAPPER BOARD

Programming

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

Web

CSS
\01F3AC
HtmlDecimal
🎬
HtmlHexadecimal
🎬
Url
%F0%9F%8E%AC

Code

MD5
ca8ebb47ee405192b910c1f7406fde32
Sha1
2b02d8d72b066d545397901c33bd05c523e6b221
Base64
8J+OrA==

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u1F3AC';
console.log(char);  // Output: 🎬

Java:

char c = '\u1F3AC';
System.out.println(c);  // Output: 🎬

JSON:

{"text": "\u1F3AC"}  // Value: 🎬

Python:

char = '\u1F3AC'
print(char)  # Output: 🎬

Perl:

my $char = "\x{1F3AC}";
print $char;  # Output: 🎬

PHP:

$char = "\x{1F3AC}";
echo $char;  // Output: 🎬

Ruby:

char = "\u{1F3AC}"
puts char  # Output: 🎬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127916;</p>  <!-- Display: 🎬 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3AC;</p>  <!-- Display: 🎬 -->

URL Encoding:

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

Encodings

MD5:

ca8ebb47ee405192b910c1f7406fde32

SHA1:

2b02d8d72b066d545397901c33bd05c523e6b221

Base64:

8J+OrA==