Unicode Finder

"∜" U+221C(FOURTH ROOT)

U+221C
שם בלוק
Mathematical Operators
שם
FOURTH ROOT

Programming

C
\u221C
JavaScript
\u221C
Java
\u221C
Json
\u221C
Python
\u221C
Perl
\x{221C}
PHP
\x{221C}
Ruby
\u{221C}
Rust
\u{221C}
Go
\u221C

Web

CSS
\00221C
HtmlDecimal
∜
HtmlHexadecimal
∜
Url
%E2%88%9C

Code

MD5
f50cafe930ce4e9672d78c43a7ae0c90
Sha1
3136878c57f6aefa4dc29fb9eee17299b02b4aea
Base64
4oic

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u221C';
console.log(char);  // Output: ∜

Java:

char c = '\u221C';
System.out.println(c);  // Output: ∜

JSON:

{"text": "\u221C"}  // Value: ∜

Python:

char = '\u221C'
print(char)  # Output: ∜

Perl:

my $char = "\x{221C}";
print $char;  # Output: ∜

PHP:

$char = "\x{221C}";
echo $char;  // Output: ∜

Ruby:

char = "\u{221C}"
puts char  # Output: ∜

Rust:

let c = '\u{221C}';
println!("{}", c);  // Output: ∜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00221C";  /* Display: ∜ */
}

HTML Decimal:

<p>HTML decimal: &#8732;</p>  <!-- Display: ∜ -->

HTML Hexadecimal:

<p>HTML hex: &#x221C;</p>  <!-- Display: ∜ -->

URL Encoding:

// ∜ URL encoding
https://unicodefinder.com/search.php?query=%E2%88%9C

Encodings

MD5:

f50cafe930ce4e9672d78c43a7ae0c90

SHA1:

3136878c57f6aefa4dc29fb9eee17299b02b4aea

Base64:

4oic