Unicode Finder

"≈" U+2248(ALMOST EQUAL TO)

U+2248
Block Name
Mathematical Operators
Name
ALMOST EQUAL TO

Programming

C
\u2248
JavaScript
\u2248
Java
\u2248
Json
\u2248
Python
\u2248
Perl
\x{2248}
PHP
\x{2248}
Ruby
\u{2248}
Rust
\u{2248}
Go
\u2248

Web

CSS
\002248
HtmlDecimal
≈
HtmlHexadecimal
≈
Url
%E2%89%88

Code

MD5
953f2b15b42147df5182f2ef59b20ee4
Sha1
ac5e882600dc60fcee0b57bd47d45894a14f0742
Base64
4omI

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2248';
console.log(char);  // Output: ≈

Java:

char c = '\u2248';
System.out.println(c);  // Output: ≈

JSON:

{"text": "\u2248"}  // Value: ≈

Python:

char = '\u2248'
print(char)  # Output: ≈

Perl:

my $char = "\x{2248}";
print $char;  # Output: ≈

PHP:

$char = "\x{2248}";
echo $char;  // Output: ≈

Ruby:

char = "\u{2248}"
puts char  # Output: ≈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002248";  /* Display: ≈ */
}

HTML Decimal:

<p>HTML decimal: &#8776;</p>  <!-- Display: ≈ -->

HTML Hexadecimal:

<p>HTML hex: &#x2248;</p>  <!-- Display: ≈ -->

URL Encoding:

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

Encodings

MD5:

953f2b15b42147df5182f2ef59b20ee4

SHA1:

ac5e882600dc60fcee0b57bd47d45894a14f0742

Base64:

4omI