Unicode Finder

"房" U+623F(CJK UNIFIED IDEOGRAPH-623F)

U+623F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-623F

Programming

C
\u623F
JavaScript
\u623F
Java
\u623F
Json
\u623F
Python
\u623F
Perl
\x{623F}
PHP
\x{623F}
Ruby
\u{623F}
Rust
\u{623F}
Go
\u623F

Web

CSS
\00623F
HtmlDecimal
房
HtmlHexadecimal
房
Url
%E6%88%BF

Code

MD5
61c4260a0eeaa5e94aba144b4c3e8ad9
Sha1
510cf918d2af08c1278b042f47d0fefb574d53c4
Base64
5oi/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u623F';
console.log(char);  // Output: 房

Java:

char c = '\u623F';
System.out.println(c);  // Output: 房

JSON:

{"text": "\u623F"}  // Value: 房

Python:

char = '\u623F'
print(char)  # Output: 房

Perl:

my $char = "\x{623F}";
print $char;  # Output: 房

PHP:

$char = "\x{623F}";
echo $char;  // Output: 房

Ruby:

char = "\u{623F}"
puts char  # Output: 房

Rust:

let c = '\u{623F}';
println!("{}", c);  // Output: 房

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00623F";  /* Display: 房 */
}

HTML Decimal:

<p>HTML decimal: &#25151;</p>  <!-- Display: 房 -->

HTML Hexadecimal:

<p>HTML hex: &#x623F;</p>  <!-- Display: 房 -->

URL Encoding:

// 房 URL encoding
https://unicodefinder.com/search.php?query=%E6%88%BF

Encodings

MD5:

61c4260a0eeaa5e94aba144b4c3e8ad9

SHA1:

510cf918d2af08c1278b042f47d0fefb574d53c4

Base64:

5oi/