Unicode Finder

"⍯" U+236F(APL FUNCTIONAL SYMBOL QUAD NOT EQUAL)

U+236F
Назва Блоку
Miscellaneous Technical
Назва
APL FUNCTIONAL SYMBOL QUAD NOT EQUAL

Programming

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

Web

CSS
\00236F
HtmlDecimal
⍯
HtmlHexadecimal
⍯
Url
%E2%8D%AF

Code

MD5
041afccbd5cc1420e56f7c522ab887d6
Sha1
9cbede62bd663760b1cf52c74b1ad798e6d76bac
Base64
4o2v

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u236F';
console.log(char);  // Output: ⍯

Java:

char c = '\u236F';
System.out.println(c);  // Output: ⍯

JSON:

{"text": "\u236F"}  // Value: ⍯

Python:

char = '\u236F'
print(char)  # Output: ⍯

Perl:

my $char = "\x{236F}";
print $char;  # Output: ⍯

PHP:

$char = "\x{236F}";
echo $char;  // Output: ⍯

Ruby:

char = "\u{236F}"
puts char  # Output: ⍯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9071;</p>  <!-- Display: ⍯ -->

HTML Hexadecimal:

<p>HTML hex: &#x236F;</p>  <!-- Display: ⍯ -->

URL Encoding:

// ⍯ URL encoding
https://unicodefinder.com/search.php?query=%E2%8D%AF

Encodings

MD5:

041afccbd5cc1420e56f7c522ab887d6

SHA1:

9cbede62bd663760b1cf52c74b1ad798e6d76bac

Base64:

4o2v