Unicode Finder

"≂" U+2242(MINUS TILDE)

U+2242
Blockname
Mathematical Operators
Name
MINUS TILDE

Programming

C
\u2242
JavaScript
\u2242
Java
\u2242
Json
\u2242
Python
\u2242
Perl
\x{2242}
PHP
\x{2242}
Ruby
\u{2242}
Rust
\u{2242}
Go
\u2242

Web

CSS
\002242
HtmlDecimal
≂
HtmlHexadecimal
≂
Url
%E2%89%82

Code

MD5
1e6b44cc82b3b5f7c0463501f44a2026
Sha1
6a7e6c1cab1545c1fc4962771ecdb082fbbc7e6f
Base64
4omC

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u2242';
console.log(char);  // Output: ≂

Java:

char c = '\u2242';
System.out.println(c);  // Output: ≂

JSON:

{"text": "\u2242"}  // Value: ≂

Python:

char = '\u2242'
print(char)  # Output: ≂

Perl:

my $char = "\x{2242}";
print $char;  # Output: ≂

PHP:

$char = "\x{2242}";
echo $char;  // Output: ≂

Ruby:

char = "\u{2242}"
puts char  # Output: ≂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002242";  /* Display: ≂ */
}

HTML Decimal:

<p>HTML decimal: &#8770;</p>  <!-- Display: ≂ -->

HTML Hexadecimal:

<p>HTML hex: &#x2242;</p>  <!-- Display: ≂ -->

URL Encoding:

// ≂ URL encoding
https://unicodefinder.com/search.php?query=%E2%89%82

Encodings

MD5:

1e6b44cc82b3b5f7c0463501f44a2026

SHA1:

6a7e6c1cab1545c1fc4962771ecdb082fbbc7e6f

Base64:

4omC