Unicode Finder

"构" U+6784(CJK UNIFIED IDEOGRAPH-6784)

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

Programming

C
\u6784
JavaScript
\u6784
Java
\u6784
Json
\u6784
Python
\u6784
Perl
\x{6784}
PHP
\x{6784}
Ruby
\u{6784}
Rust
\u{6784}
Go
\u6784

Web

CSS
\006784
HtmlDecimal
构
HtmlHexadecimal
构
Url
%E6%9E%84

Code

MD5
2a157d6d2f0764cfc8530b564ba652ab
Sha1
36fd133eda49d7e233a4df7b57530a4bbf874076
Base64
5p6E

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6784';
console.log(char);  // Output: 构

Java:

char c = '\u6784';
System.out.println(c);  // Output: 构

JSON:

{"text": "\u6784"}  // Value: 构

Python:

char = '\u6784'
print(char)  # Output: 构

Perl:

my $char = "\x{6784}";
print $char;  # Output: 构

PHP:

$char = "\x{6784}";
echo $char;  // Output: 构

Ruby:

char = "\u{6784}"
puts char  # Output: 构

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006784";  /* Display: 构 */
}

HTML Decimal:

<p>HTML decimal: &#26500;</p>  <!-- Display: 构 -->

HTML Hexadecimal:

<p>HTML hex: &#x6784;</p>  <!-- Display: 构 -->

URL Encoding:

// 构 URL encoding
https://unicodefinder.com/search.php?query=%E6%9E%84

Encodings

MD5:

2a157d6d2f0764cfc8530b564ba652ab

SHA1:

36fd133eda49d7e233a4df7b57530a4bbf874076

Base64:

5p6E