Unicode Finder

"⛮" U+26EE(GEAR WITH HANDLES)

U+26EE
Block Name
Miscellaneous Symbols
Name
GEAR WITH HANDLES

Programming

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

Web

CSS
\0026EE
HtmlDecimal
⛮
HtmlHexadecimal
⛮
Url
%E2%9B%AE

Code

MD5
8acd7d96b043a90d36eec002fad60331
Sha1
cd39d027860029f0bd6ef2d846f7df1d39fab8b5
Base64
4puu

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u26EE';
console.log(char);  // Output: ⛮

Java:

char c = '\u26EE';
System.out.println(c);  // Output: ⛮

JSON:

{"text": "\u26EE"}  // Value: ⛮

Python:

char = '\u26EE'
print(char)  # Output: ⛮

Perl:

my $char = "\x{26EE}";
print $char;  # Output: ⛮

PHP:

$char = "\x{26EE}";
echo $char;  // Output: ⛮

Ruby:

char = "\u{26EE}"
puts char  # Output: ⛮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9966;</p>  <!-- Display: ⛮ -->

HTML Hexadecimal:

<p>HTML hex: &#x26EE;</p>  <!-- Display: ⛮ -->

URL Encoding:

// ⛮ URL encoding
https://unicodefinder.com/search.php?query=%E2%9B%AE

Encodings

MD5:

8acd7d96b043a90d36eec002fad60331

SHA1:

cd39d027860029f0bd6ef2d846f7df1d39fab8b5

Base64:

4puu