Unicode Finder

"⌧" U+2327(X IN A RECTANGLE BOX)

U+2327
Nume Bloc
Miscellaneous Technical
Nume
X IN A RECTANGLE BOX

Programming

C
\u2327
JavaScript
\u2327
Java
\u2327
Json
\u2327
Python
\u2327
Perl
\x{2327}
PHP
\x{2327}
Ruby
\u{2327}
Rust
\u{2327}
Go
\u2327

Web

CSS
\002327
HtmlDecimal
⌧
HtmlHexadecimal
⌧
Url
%E2%8C%A7

Code

MD5
235288c9a1f8fb2ed60ae57c340ee939
Sha1
aede9ef28eb90039ce8f57c8b0c80e32bacd2966
Base64
4oyn

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u2327';
console.log(char);  // Output: ⌧

Java:

char c = '\u2327';
System.out.println(c);  // Output: ⌧

JSON:

{"text": "\u2327"}  // Value: ⌧

Python:

char = '\u2327'
print(char)  # Output: ⌧

Perl:

my $char = "\x{2327}";
print $char;  # Output: ⌧

PHP:

$char = "\x{2327}";
echo $char;  // Output: ⌧

Ruby:

char = "\u{2327}"
puts char  # Output: ⌧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002327";  /* Display: ⌧ */
}

HTML Decimal:

<p>HTML decimal: &#8999;</p>  <!-- Display: ⌧ -->

HTML Hexadecimal:

<p>HTML hex: &#x2327;</p>  <!-- Display: ⌧ -->

URL Encoding:

// ⌧ URL encoding
https://unicodefinder.com/search.php?query=%E2%8C%A7

Encodings

MD5:

235288c9a1f8fb2ed60ae57c340ee939

SHA1:

aede9ef28eb90039ce8f57c8b0c80e32bacd2966

Base64:

4oyn