Unicode Finder

"🔛" U+1F51B(ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE)

🔛
U+1F51B
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE

Programming

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

Web

CSS
\01F51B
HtmlDecimal
🔛
HtmlHexadecimal
🔛
Url
%F0%9F%94%9B

Code

MD5
7b17bd48efdffef0ecf572720d4579c2
Sha1
0c18418f5fdcc50d73e7eff03bac07e703d6a6b8
Base64
8J+Umw==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F51B';
console.log(char);  // Output: 🔛

Java:

char c = '\u1F51B';
System.out.println(c);  // Output: 🔛

JSON:

{"text": "\u1F51B"}  // Value: 🔛

Python:

char = '\u1F51B'
print(char)  # Output: 🔛

Perl:

my $char = "\x{1F51B}";
print $char;  # Output: 🔛

PHP:

$char = "\x{1F51B}";
echo $char;  // Output: 🔛

Ruby:

char = "\u{1F51B}"
puts char  # Output: 🔛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128283;</p>  <!-- Display: 🔛 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F51B;</p>  <!-- Display: 🔛 -->

URL Encoding:

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

Encodings

MD5:

7b17bd48efdffef0ecf572720d4579c2

SHA1:

0c18418f5fdcc50d73e7eff03bac07e703d6a6b8

Base64:

8J+Umw==