Unicode Finder

"␣" U+2423(OPEN BOX)

U+2423
Pangalan ng Block
Control Pictures
Pangalan
OPEN BOX

Programming

C
\u2423
JavaScript
\u2423
Java
\u2423
Json
\u2423
Python
\u2423
Perl
\x{2423}
PHP
\x{2423}
Ruby
\u{2423}
Rust
\u{2423}
Go
\u2423

Web

CSS
\002423
HtmlDecimal
␣
HtmlHexadecimal
␣
Url
%E2%90%A3

Code

MD5
d0448db5de70c1c85f9176379257f113
Sha1
72bba5fd6da4f8012e901d27e8f7631e871b0922
Base64
4pCj

Mga Halimbawa ng Paggamit

Programming Languages

C:

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

JavaScript:

const char = '\u2423';
console.log(char);  // Output: ␣

Java:

char c = '\u2423';
System.out.println(c);  // Output: ␣

JSON:

{"text": "\u2423"}  // Value: ␣

Python:

char = '\u2423'
print(char)  # Output: ␣

Perl:

my $char = "\x{2423}";
print $char;  # Output: ␣

PHP:

$char = "\x{2423}";
echo $char;  // Output: ␣

Ruby:

char = "\u{2423}"
puts char  # Output: ␣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002423";  /* Display: ␣ */
}

HTML Decimal:

<p>HTML decimal: &#9251;</p>  <!-- Display: ␣ -->

HTML Hexadecimal:

<p>HTML hex: &#x2423;</p>  <!-- Display: ␣ -->

URL Encoding:

// ␣ URL encoding
https://unicodefinder.com/search.php?query=%E2%90%A3

Encodings

MD5:

d0448db5de70c1c85f9176379257f113

SHA1:

72bba5fd6da4f8012e901d27e8f7631e871b0922

Base64:

4pCj