Unicode Finder

"⚲" U+26B2(NEUTER)

U+26B2
Block Name
Miscellaneous Symbols
Name
NEUTER

Programming

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

Web

CSS
\0026B2
HtmlDecimal
⚲
HtmlHexadecimal
⚲
Url
%E2%9A%B2

Code

MD5
03c6a77b13214f95286e459094549f4e
Sha1
4008764cc00c4b7a7ce9efcd0756b390b25a5075
Base64
4pqy

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26B2';
console.log(char);  // Output: ⚲

Java:

char c = '\u26B2';
System.out.println(c);  // Output: ⚲

JSON:

{"text": "\u26B2"}  // Value: ⚲

Python:

char = '\u26B2'
print(char)  # Output: ⚲

Perl:

my $char = "\x{26B2}";
print $char;  # Output: ⚲

PHP:

$char = "\x{26B2}";
echo $char;  // Output: ⚲

Ruby:

char = "\u{26B2}"
puts char  # Output: ⚲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9906;</p>  <!-- Display: ⚲ -->

HTML Hexadecimal:

<p>HTML hex: &#x26B2;</p>  <!-- Display: ⚲ -->

URL Encoding:

// ⚲ URL encoding
https://unicodefinder.com/search.php?query=%E2%9A%B2

Encodings

MD5:

03c6a77b13214f95286e459094549f4e

SHA1:

4008764cc00c4b7a7ce9efcd0756b390b25a5075

Base64:

4pqy