Unicode Finder

"๐ŸŽ" U+1F39D(BEAMED DESCENDING MUSICAL NOTES)

๐ŸŽ
U+1F39D
ใƒ–ใƒญใƒƒใ‚ฏๅ
Miscellaneous Symbols and Pictographs
ๅๅ‰
BEAMED DESCENDING MUSICAL NOTES

Programming

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

Web

CSS
\01F39D
HtmlDecimal
🎝
HtmlHexadecimal
🎝
Url
%F0%9F%8E%9D

Code

MD5
931d2e07c487533cedb716ac6abf4c6e
Sha1
ccc6dc42b7d9a5e3b40f55e0c8b95bf1495cc908
Base64
8J+OnQ==

ไฝฟ็”จไพ‹

Programming Languages

C:

char c = '\u1F39D';
printf("%c\n", c);  // Output: ๐ŸŽ

JavaScript:

const char = '\u1F39D';
console.log(char);  // Output: ๐ŸŽ

Java:

char c = '\u1F39D';
System.out.println(c);  // Output: ๐ŸŽ

JSON:

{"text": "\u1F39D"}  // Value: ๐ŸŽ

Python:

char = '\u1F39D'
print(char)  # Output: ๐ŸŽ

Perl:

my $char = "\x{1F39D}";
print $char;  # Output: ๐ŸŽ

PHP:

$char = "\x{1F39D}";
echo $char;  // Output: ๐ŸŽ

Ruby:

char = "\u{1F39D}"
puts char  # Output: ๐ŸŽ

Rust:

let c = '\u{1F39D}';
println!("{}", c);  // Output: ๐ŸŽ

Go:

char := '\u1F39D'
fmt.Printf("%c\n", char)  // Output: ๐ŸŽ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F39D";  /* Display: ๐ŸŽ */
}

HTML Decimal:

<p>HTML decimal: &#127901;</p>  <!-- Display: ๐ŸŽ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F39D;</p>  <!-- Display: ๐ŸŽ -->

URL Encoding:

// ๐ŸŽ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8E%9D

Encodings

MD5:

931d2e07c487533cedb716ac6abf4c6e

SHA1:

ccc6dc42b7d9a5e3b40f55e0c8b95bf1495cc908

Base64:

8J+OnQ==