Unicode Finder

"∛" U+221B(CUBE ROOT)

U+221B
Nama Blok
Mathematical Operators
Nama
CUBE ROOT

Programming

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

Web

CSS
\00221B
HtmlDecimal
∛
HtmlHexadecimal
∛
Url
%E2%88%9B

Code

MD5
c3c825bf118eb57c1eda1ae5cd672be9
Sha1
dd1a71787071092fd7ae0503c38a0d1b6f2263cf
Base64
4oib

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u221B';
console.log(char);  // Output: ∛

Java:

char c = '\u221B';
System.out.println(c);  // Output: ∛

JSON:

{"text": "\u221B"}  // Value: ∛

Python:

char = '\u221B'
print(char)  # Output: ∛

Perl:

my $char = "\x{221B}";
print $char;  # Output: ∛

PHP:

$char = "\x{221B}";
echo $char;  // Output: ∛

Ruby:

char = "\u{221B}"
puts char  # Output: ∛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8731;</p>  <!-- Display: ∛ -->

HTML Hexadecimal:

<p>HTML hex: &#x221B;</p>  <!-- Display: ∛ -->

URL Encoding:

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

Encodings

MD5:

c3c825bf118eb57c1eda1ae5cd672be9

SHA1:

dd1a71787071092fd7ae0503c38a0d1b6f2263cf

Base64:

4oib