Unicode Finder

"⌂" U+2302(HOUSE)

U+2302
區塊名稱
Miscellaneous Technical
名稱
HOUSE

Programming

C
\u2302
JavaScript
\u2302
Java
\u2302
Json
\u2302
Python
\u2302
Perl
\x{2302}
PHP
\x{2302}
Ruby
\u{2302}
Rust
\u{2302}
Go
\u2302

Web

CSS
\002302
HtmlDecimal
⌂
HtmlHexadecimal
⌂
Url
%E2%8C%82

Code

MD5
a4b31d2637f2ad60f2ec2a6c2240ae21
Sha1
2330e19b5daca5d5adb217b123a1fb69cfc39202
Base64
4oyC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u2302';
console.log(char);  // Output: ⌂

Java:

char c = '\u2302';
System.out.println(c);  // Output: ⌂

JSON:

{"text": "\u2302"}  // Value: ⌂

Python:

char = '\u2302'
print(char)  # Output: ⌂

Perl:

my $char = "\x{2302}";
print $char;  # Output: ⌂

PHP:

$char = "\x{2302}";
echo $char;  // Output: ⌂

Ruby:

char = "\u{2302}"
puts char  # Output: ⌂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002302";  /* Display: ⌂ */
}

HTML Decimal:

<p>HTML decimal: &#8962;</p>  <!-- Display: ⌂ -->

HTML Hexadecimal:

<p>HTML hex: &#x2302;</p>  <!-- Display: ⌂ -->

URL Encoding:

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

Encodings

MD5:

a4b31d2637f2ad60f2ec2a6c2240ae21

SHA1:

2330e19b5daca5d5adb217b123a1fb69cfc39202

Base64:

4oyC