Unicode Finder

"∲" U+2232(CLOCKWISE CONTOUR INTEGRAL)

U+2232
Blockname
Mathematical Operators
Name
CLOCKWISE CONTOUR INTEGRAL

Programming

C
\u2232
JavaScript
\u2232
Java
\u2232
Json
\u2232
Python
\u2232
Perl
\x{2232}
PHP
\x{2232}
Ruby
\u{2232}
Rust
\u{2232}
Go
\u2232

Web

CSS
\002232
HtmlDecimal
∲
HtmlHexadecimal
∲
Url
%E2%88%B2

Code

MD5
53fa212ad383ff6086ce5952694492bc
Sha1
d7deffdc42a19378a4fcfc746380df3eec951306
Base64
4oiy

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2232';
console.log(char);  // Output: ∲

Java:

char c = '\u2232';
System.out.println(c);  // Output: ∲

JSON:

{"text": "\u2232"}  // Value: ∲

Python:

char = '\u2232'
print(char)  # Output: ∲

Perl:

my $char = "\x{2232}";
print $char;  # Output: ∲

PHP:

$char = "\x{2232}";
echo $char;  // Output: ∲

Ruby:

char = "\u{2232}"
puts char  # Output: ∲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002232";  /* Display: ∲ */
}

HTML Decimal:

<p>HTML decimal: &#8754;</p>  <!-- Display: ∲ -->

HTML Hexadecimal:

<p>HTML hex: &#x2232;</p>  <!-- Display: ∲ -->

URL Encoding:

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

Encodings

MD5:

53fa212ad383ff6086ce5952694492bc

SHA1:

d7deffdc42a19378a4fcfc746380df3eec951306

Base64:

4oiy