Unicode Finder

"∔" U+2214(DOT PLUS)

U+2214
שם בלוק
Mathematical Operators
שם
DOT PLUS

Programming

C
\u2214
JavaScript
\u2214
Java
\u2214
Json
\u2214
Python
\u2214
Perl
\x{2214}
PHP
\x{2214}
Ruby
\u{2214}
Rust
\u{2214}
Go
\u2214

Web

CSS
\002214
HtmlDecimal
∔
HtmlHexadecimal
∔
Url
%E2%88%94

Code

MD5
b7441a153a7c276bb1916c34217e2d2a
Sha1
4afcb55d5f82193c44d4d9b8f20a80d04695445b
Base64
4oiU

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u2214';
console.log(char);  // Output: ∔

Java:

char c = '\u2214';
System.out.println(c);  // Output: ∔

JSON:

{"text": "\u2214"}  // Value: ∔

Python:

char = '\u2214'
print(char)  # Output: ∔

Perl:

my $char = "\x{2214}";
print $char;  # Output: ∔

PHP:

$char = "\x{2214}";
echo $char;  // Output: ∔

Ruby:

char = "\u{2214}"
puts char  # Output: ∔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002214";  /* Display: ∔ */
}

HTML Decimal:

<p>HTML decimal: &#8724;</p>  <!-- Display: ∔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2214;</p>  <!-- Display: ∔ -->

URL Encoding:

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

Encodings

MD5:

b7441a153a7c276bb1916c34217e2d2a

SHA1:

4afcb55d5f82193c44d4d9b8f20a80d04695445b

Base64:

4oiU