Unicode Finder

"∱" U+2231(CLOCKWISE INTEGRAL)

U+2231
Blockname
Mathematical Operators
Name
CLOCKWISE INTEGRAL

Programming

C
\u2231
JavaScript
\u2231
Java
\u2231
Json
\u2231
Python
\u2231
Perl
\x{2231}
PHP
\x{2231}
Ruby
\u{2231}
Rust
\u{2231}
Go
\u2231

Web

CSS
\002231
HtmlDecimal
∱
HtmlHexadecimal
∱
Url
%E2%88%B1

Code

MD5
139a720bf7a1c598ed2bd59bd4df7ecf
Sha1
ae78017f2e1212a0f729980dd2134e406665c0b3
Base64
4oix

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2231';
console.log(char);  // Output: ∱

Java:

char c = '\u2231';
System.out.println(c);  // Output: ∱

JSON:

{"text": "\u2231"}  // Value: ∱

Python:

char = '\u2231'
print(char)  # Output: ∱

Perl:

my $char = "\x{2231}";
print $char;  # Output: ∱

PHP:

$char = "\x{2231}";
echo $char;  // Output: ∱

Ruby:

char = "\u{2231}"
puts char  # Output: ∱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002231";  /* Display: ∱ */
}

HTML Decimal:

<p>HTML decimal: &#8753;</p>  <!-- Display: ∱ -->

HTML Hexadecimal:

<p>HTML hex: &#x2231;</p>  <!-- Display: ∱ -->

URL Encoding:

// ∱ URL encoding
https://unicodefinder.com/search.php?query=%E2%88%B1

Encodings

MD5:

139a720bf7a1c598ed2bd59bd4df7ecf

SHA1:

ae78017f2e1212a0f729980dd2134e406665c0b3

Base64:

4oix