Unicode Finder

"๐Ÿ•ฌ" U+1F56C(BULLHORN WITH SOUND WAVES)

๐Ÿ•ฌ
U+1F56C
ืฉื ื‘ืœื•ืง
Miscellaneous Symbols and Pictographs
ืฉื
BULLHORN WITH SOUND WAVES

Programming

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

Web

CSS
\01F56C
HtmlDecimal
🕬
HtmlHexadecimal
🕬
Url
%F0%9F%95%AC

Code

MD5
2913361887f1fd08f36d2fe1485c4eb4
Sha1
27fad061c88ba7967418edee8d9b661da8d9b294
Base64
8J+VrA==

ื“ื•ื’ืžืื•ืช ืฉื™ืžื•ืฉ

Programming Languages

C:

char c = '\u1F56C';
printf("%c\n", c);  // Output: ๐Ÿ•ฌ

JavaScript:

const char = '\u1F56C';
console.log(char);  // Output: ๐Ÿ•ฌ

Java:

char c = '\u1F56C';
System.out.println(c);  // Output: ๐Ÿ•ฌ

JSON:

{"text": "\u1F56C"}  // Value: ๐Ÿ•ฌ

Python:

char = '\u1F56C'
print(char)  # Output: ๐Ÿ•ฌ

Perl:

my $char = "\x{1F56C}";
print $char;  # Output: ๐Ÿ•ฌ

PHP:

$char = "\x{1F56C}";
echo $char;  // Output: ๐Ÿ•ฌ

Ruby:

char = "\u{1F56C}"
puts char  # Output: ๐Ÿ•ฌ

Rust:

let c = '\u{1F56C}';
println!("{}", c);  // Output: ๐Ÿ•ฌ

Go:

char := '\u1F56C'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ•ฌ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F56C";  /* Display: ๐Ÿ•ฌ */
}

HTML Decimal:

<p>HTML decimal: &#128364;</p>  <!-- Display: ๐Ÿ•ฌ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F56C;</p>  <!-- Display: ๐Ÿ•ฌ -->

URL Encoding:

// ๐Ÿ•ฌ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%95%AC

Encodings

MD5:

2913361887f1fd08f36d2fe1485c4eb4

SHA1:

27fad061c88ba7967418edee8d9b661da8d9b294

Base64:

8J+VrA==