Unicode Finder

"🔕" U+1F515(BELL WITH CANCELLATION STROKE)

🔕
U+1F515
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
BELL WITH CANCELLATION STROKE

Programming

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

Web

CSS
\01F515
HtmlDecimal
🔕
HtmlHexadecimal
🔕
Url
%F0%9F%94%95

Code

MD5
dd1615b73eee3ae2b6f0a8c4ca1c595e
Sha1
9bebb828b9fca8cab6e2ae456eb24687dce7425b
Base64
8J+UlQ==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F515';
console.log(char);  // Output: 🔕

Java:

char c = '\u1F515';
System.out.println(c);  // Output: 🔕

JSON:

{"text": "\u1F515"}  // Value: 🔕

Python:

char = '\u1F515'
print(char)  # Output: 🔕

Perl:

my $char = "\x{1F515}";
print $char;  # Output: 🔕

PHP:

$char = "\x{1F515}";
echo $char;  // Output: 🔕

Ruby:

char = "\u{1F515}"
puts char  # Output: 🔕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128277;</p>  <!-- Display: 🔕 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F515;</p>  <!-- Display: 🔕 -->

URL Encoding:

// 🔕 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%94%95

Encodings

MD5:

dd1615b73eee3ae2b6f0a8c4ca1c595e

SHA1:

9bebb828b9fca8cab6e2ae456eb24687dce7425b

Base64:

8J+UlQ==