Unicode Finder

"∳" U+2233(ANTICLOCKWISE CONTOUR INTEGRAL)

U+2233
Blockname
Mathematical Operators
Name
ANTICLOCKWISE CONTOUR INTEGRAL

Programming

C
\u2233
JavaScript
\u2233
Java
\u2233
Json
\u2233
Python
\u2233
Perl
\x{2233}
PHP
\x{2233}
Ruby
\u{2233}
Rust
\u{2233}
Go
\u2233

Web

CSS
\002233
HtmlDecimal
∳
HtmlHexadecimal
∳
Url
%E2%88%B3

Code

MD5
de634382d820e9897b0ca52f7b593020
Sha1
a9f005af71a85941115318bd445512355c9dac3f
Base64
4oiz

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2233';
console.log(char);  // Output: ∳

Java:

char c = '\u2233';
System.out.println(c);  // Output: ∳

JSON:

{"text": "\u2233"}  // Value: ∳

Python:

char = '\u2233'
print(char)  # Output: ∳

Perl:

my $char = "\x{2233}";
print $char;  # Output: ∳

PHP:

$char = "\x{2233}";
echo $char;  // Output: ∳

Ruby:

char = "\u{2233}"
puts char  # Output: ∳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002233";  /* Display: ∳ */
}

HTML Decimal:

<p>HTML decimal: &#8755;</p>  <!-- Display: ∳ -->

HTML Hexadecimal:

<p>HTML hex: &#x2233;</p>  <!-- Display: ∳ -->

URL Encoding:

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

Encodings

MD5:

de634382d820e9897b0ca52f7b593020

SHA1:

a9f005af71a85941115318bd445512355c9dac3f

Base64:

4oiz