Unicode Finder

"≏" U+224F(DIFFERENCE BETWEEN)

U+224F
Block Name
Mathematical Operators
Name
DIFFERENCE BETWEEN

Programming

C
\u224F
JavaScript
\u224F
Java
\u224F
Json
\u224F
Python
\u224F
Perl
\x{224F}
PHP
\x{224F}
Ruby
\u{224F}
Rust
\u{224F}
Go
\u224F

Web

CSS
\00224F
HtmlDecimal
≏
HtmlHexadecimal
≏
Url
%E2%89%8F

Code

MD5
3757e23f9f3d2bb0ea6018404598b781
Sha1
5642d06b579bc8458450f92440fae4387f817b42
Base64
4omP

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u224F';
console.log(char);  // Output: ≏

Java:

char c = '\u224F';
System.out.println(c);  // Output: ≏

JSON:

{"text": "\u224F"}  // Value: ≏

Python:

char = '\u224F'
print(char)  # Output: ≏

Perl:

my $char = "\x{224F}";
print $char;  # Output: ≏

PHP:

$char = "\x{224F}";
echo $char;  // Output: ≏

Ruby:

char = "\u{224F}"
puts char  # Output: ≏

Rust:

let c = '\u{224F}';
println!("{}", c);  // Output: ≏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00224F";  /* Display: ≏ */
}

HTML Decimal:

<p>HTML decimal: &#8783;</p>  <!-- Display: ≏ -->

HTML Hexadecimal:

<p>HTML hex: &#x224F;</p>  <!-- Display: ≏ -->

URL Encoding:

// ≏ URL encoding
https://unicodefinder.com/search.php?query=%E2%89%8F

Encodings

MD5:

3757e23f9f3d2bb0ea6018404598b781

SHA1:

5642d06b579bc8458450f92440fae4387f817b42

Base64:

4omP