Unicode Finder

"⌥" U+2325(OPTION KEY)

U+2325
Nume Bloc
Miscellaneous Technical
Nume
OPTION KEY

Programming

C
\u2325
JavaScript
\u2325
Java
\u2325
Json
\u2325
Python
\u2325
Perl
\x{2325}
PHP
\x{2325}
Ruby
\u{2325}
Rust
\u{2325}
Go
\u2325

Web

CSS
\002325
HtmlDecimal
⌥
HtmlHexadecimal
⌥
Url
%E2%8C%A5

Code

MD5
cc1ccfbb1f4827d1e881b185dfe88527
Sha1
4e8e6ff2989841893307b09e3c62d4b5ade13d31
Base64
4oyl

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u2325';
console.log(char);  // Output: ⌥

Java:

char c = '\u2325';
System.out.println(c);  // Output: ⌥

JSON:

{"text": "\u2325"}  // Value: ⌥

Python:

char = '\u2325'
print(char)  # Output: ⌥

Perl:

my $char = "\x{2325}";
print $char;  # Output: ⌥

PHP:

$char = "\x{2325}";
echo $char;  // Output: ⌥

Ruby:

char = "\u{2325}"
puts char  # Output: ⌥

Rust:

let c = '\u{2325}';
println!("{}", c);  // Output: ⌥

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002325";  /* Display: ⌥ */
}

HTML Decimal:

<p>HTML decimal: &#8997;</p>  <!-- Display: ⌥ -->

HTML Hexadecimal:

<p>HTML hex: &#x2325;</p>  <!-- Display: ⌥ -->

URL Encoding:

// ⌥ URL encoding
https://unicodefinder.com/search.php?query=%E2%8C%A5

Encodings

MD5:

cc1ccfbb1f4827d1e881b185dfe88527

SHA1:

4e8e6ff2989841893307b09e3c62d4b5ade13d31

Base64:

4oyl