Unicode Finder

"⊰" U+22B0(PRECEDES UNDER RELATION)

U+22B0
Название Блока
Mathematical Operators
Название
PRECEDES UNDER RELATION

Programming

C
\u22B0
JavaScript
\u22B0
Java
\u22B0
Json
\u22B0
Python
\u22B0
Perl
\x{22B0}
PHP
\x{22B0}
Ruby
\u{22B0}
Rust
\u{22B0}
Go
\u22B0

Web

CSS
\0022B0
HtmlDecimal
⊰
HtmlHexadecimal
⊰
Url
%E2%8A%B0

Code

MD5
0a9250355f2050727bf69244925fcea5
Sha1
c7b036461ce51a0c19153db07fd694cef2bff5c0
Base64
4oqw

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u22B0';
console.log(char);  // Output: ⊰

Java:

char c = '\u22B0';
System.out.println(c);  // Output: ⊰

JSON:

{"text": "\u22B0"}  // Value: ⊰

Python:

char = '\u22B0'
print(char)  # Output: ⊰

Perl:

my $char = "\x{22B0}";
print $char;  # Output: ⊰

PHP:

$char = "\x{22B0}";
echo $char;  // Output: ⊰

Ruby:

char = "\u{22B0}"
puts char  # Output: ⊰

Rust:

let c = '\u{22B0}';
println!("{}", c);  // Output: ⊰

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0022B0";  /* Display: ⊰ */
}

HTML Decimal:

<p>HTML decimal: &#8880;</p>  <!-- Display: ⊰ -->

HTML Hexadecimal:

<p>HTML hex: &#x22B0;</p>  <!-- Display: ⊰ -->

URL Encoding:

// ⊰ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%B0

Encodings

MD5:

0a9250355f2050727bf69244925fcea5

SHA1:

c7b036461ce51a0c19153db07fd694cef2bff5c0

Base64:

4oqw