Unicode Finder

"厝" U+539D(CJK UNIFIED IDEOGRAPH-539D)

U+539D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-539D

Programming

C
\u539D
JavaScript
\u539D
Java
\u539D
Json
\u539D
Python
\u539D
Perl
\x{539D}
PHP
\x{539D}
Ruby
\u{539D}
Rust
\u{539D}
Go
\u539D

Web

CSS
\00539D
HtmlDecimal
厝
HtmlHexadecimal
厝
Url
%E5%8E%9D

Code

MD5
5f5a74cb8665e81db8da89ee62617067
Sha1
5657cd4d5bf4c0af11e3e4429257bed201724117
Base64
5Y6d

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u539D';
console.log(char);  // Output: 厝

Java:

char c = '\u539D';
System.out.println(c);  // Output: 厝

JSON:

{"text": "\u539D"}  // Value: 厝

Python:

char = '\u539D'
print(char)  # Output: 厝

Perl:

my $char = "\x{539D}";
print $char;  # Output: 厝

PHP:

$char = "\x{539D}";
echo $char;  // Output: 厝

Ruby:

char = "\u{539D}"
puts char  # Output: 厝

Rust:

let c = '\u{539D}';
println!("{}", c);  // Output: 厝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00539D";  /* Display: 厝 */
}

HTML Decimal:

<p>HTML decimal: &#21405;</p>  <!-- Display: 厝 -->

HTML Hexadecimal:

<p>HTML hex: &#x539D;</p>  <!-- Display: 厝 -->

URL Encoding:

// 厝 URL encoding
https://unicodefinder.com/search.php?query=%E5%8E%9D

Encodings

MD5:

5f5a74cb8665e81db8da89ee62617067

SHA1:

5657cd4d5bf4c0af11e3e4429257bed201724117

Base64:

5Y6d