Unicode Finder

"∤" U+2224(DOES NOT DIVIDE)

U+2224
Blockname
Mathematical Operators
Name
DOES NOT DIVIDE

Programming

C
\u2224
JavaScript
\u2224
Java
\u2224
Json
\u2224
Python
\u2224
Perl
\x{2224}
PHP
\x{2224}
Ruby
\u{2224}
Rust
\u{2224}
Go
\u2224

Web

CSS
\002224
HtmlDecimal
∤
HtmlHexadecimal
∤
Url
%E2%88%A4

Code

MD5
b9bf01c5ec5e55596d4cf961d439180a
Sha1
4b317c4275d6ac8d05051ba4869b8ccfa76d766c
Base64
4oik

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2224';
console.log(char);  // Output: ∤

Java:

char c = '\u2224';
System.out.println(c);  // Output: ∤

JSON:

{"text": "\u2224"}  // Value: ∤

Python:

char = '\u2224'
print(char)  # Output: ∤

Perl:

my $char = "\x{2224}";
print $char;  # Output: ∤

PHP:

$char = "\x{2224}";
echo $char;  // Output: ∤

Ruby:

char = "\u{2224}"
puts char  # Output: ∤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002224";  /* Display: ∤ */
}

HTML Decimal:

<p>HTML decimal: &#8740;</p>  <!-- Display: ∤ -->

HTML Hexadecimal:

<p>HTML hex: &#x2224;</p>  <!-- Display: ∤ -->

URL Encoding:

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

Encodings

MD5:

b9bf01c5ec5e55596d4cf961d439180a

SHA1:

4b317c4275d6ac8d05051ba4869b8ccfa76d766c

Base64:

4oik