Unicode Finder

"⛎" U+26CE(OPHIUCHUS)

U+26CE
Block Name
Miscellaneous Symbols
Name
OPHIUCHUS

Programming

C
\u26CE
JavaScript
\u26CE
Java
\u26CE
Json
\u26CE
Python
\u26CE
Perl
\x{26CE}
PHP
\x{26CE}
Ruby
\u{26CE}
Rust
\u{26CE}
Go
\u26CE

Web

CSS
\0026CE
HtmlDecimal
⛎
HtmlHexadecimal
⛎
Url
%E2%9B%8E

Code

MD5
a62e40078a6a3f2edd5613344cf20f78
Sha1
5be030ee5c25e5590606f2918e8d7f4886a7a4d0
Base64
4puO

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26CE';
console.log(char);  // Output: ⛎

Java:

char c = '\u26CE';
System.out.println(c);  // Output: ⛎

JSON:

{"text": "\u26CE"}  // Value: ⛎

Python:

char = '\u26CE'
print(char)  # Output: ⛎

Perl:

my $char = "\x{26CE}";
print $char;  # Output: ⛎

PHP:

$char = "\x{26CE}";
echo $char;  // Output: ⛎

Ruby:

char = "\u{26CE}"
puts char  # Output: ⛎

Rust:

let c = '\u{26CE}';
println!("{}", c);  // Output: ⛎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0026CE";  /* Display: ⛎ */
}

HTML Decimal:

<p>HTML decimal: &#9934;</p>  <!-- Display: ⛎ -->

HTML Hexadecimal:

<p>HTML hex: &#x26CE;</p>  <!-- Display: ⛎ -->

URL Encoding:

// ⛎ URL encoding
https://unicodefinder.com/search.php?query=%E2%9B%8E

Encodings

MD5:

a62e40078a6a3f2edd5613344cf20f78

SHA1:

5be030ee5c25e5590606f2918e8d7f4886a7a4d0

Base64:

4puO