Unicode Finder

"爿" U+723F(CJK UNIFIED IDEOGRAPH-723F)

U+723F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-723F

Programming

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

Web

CSS
\00723F
HtmlDecimal
爿
HtmlHexadecimal
爿
Url
%E7%88%BF

Code

MD5
cf437b1f5825e819394ae30500a70f5d
Sha1
c9beee932d7e5f78699ca02b92ed95266e728f57
Base64
54i/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u723F';
console.log(char);  // Output: 爿

Java:

char c = '\u723F';
System.out.println(c);  // Output: 爿

JSON:

{"text": "\u723F"}  // Value: 爿

Python:

char = '\u723F'
print(char)  # Output: 爿

Perl:

my $char = "\x{723F}";
print $char;  # Output: 爿

PHP:

$char = "\x{723F}";
echo $char;  // Output: 爿

Ruby:

char = "\u{723F}"
puts char  # Output: 爿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29247;</p>  <!-- Display: 爿 -->

HTML Hexadecimal:

<p>HTML hex: &#x723F;</p>  <!-- Display: 爿 -->

URL Encoding:

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

Encodings

MD5:

cf437b1f5825e819394ae30500a70f5d

SHA1:

c9beee932d7e5f78699ca02b92ed95266e728f57

Base64:

54i/