Unicode Finder

"🎼" U+1F3BC(MUSICAL SCORE)

🎼
U+1F3BC
Название Блока
Miscellaneous Symbols and Pictographs
Название
MUSICAL SCORE

Programming

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

Web

CSS
\01F3BC
HtmlDecimal
🎼
HtmlHexadecimal
🎼
Url
%F0%9F%8E%BC

Code

MD5
ffc535ae81a303e366b6b82f4b043284
Sha1
85203bfbb04eb45634baf9316c708be5d3c128c0
Base64
8J+OvA==

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1F3BC';
console.log(char);  // Output: 🎼

Java:

char c = '\u1F3BC';
System.out.println(c);  // Output: 🎼

JSON:

{"text": "\u1F3BC"}  // Value: 🎼

Python:

char = '\u1F3BC'
print(char)  # Output: 🎼

Perl:

my $char = "\x{1F3BC}";
print $char;  # Output: 🎼

PHP:

$char = "\x{1F3BC}";
echo $char;  // Output: 🎼

Ruby:

char = "\u{1F3BC}"
puts char  # Output: 🎼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127932;</p>  <!-- Display: 🎼 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3BC;</p>  <!-- Display: 🎼 -->

URL Encoding:

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

Encodings

MD5:

ffc535ae81a303e366b6b82f4b043284

SHA1:

85203bfbb04eb45634baf9316c708be5d3c128c0

Base64:

8J+OvA==