Unicode Finder

"木" U+6728(CJK UNIFIED IDEOGRAPH-6728)

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

Programming

C
\u6728
JavaScript
\u6728
Java
\u6728
Json
\u6728
Python
\u6728
Perl
\x{6728}
PHP
\x{6728}
Ruby
\u{6728}
Rust
\u{6728}
Go
\u6728

Web

CSS
\006728
HtmlDecimal
木
HtmlHexadecimal
木
Url
%E6%9C%A8

Code

MD5
e0a5e08af3c1309c881b551516c282c5
Sha1
8294db3a2006ae4a321f7f24d76942cf922c6c2e
Base64
5pyo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6728';
console.log(char);  // Output: 木

Java:

char c = '\u6728';
System.out.println(c);  // Output: 木

JSON:

{"text": "\u6728"}  // Value: 木

Python:

char = '\u6728'
print(char)  # Output: 木

Perl:

my $char = "\x{6728}";
print $char;  # Output: 木

PHP:

$char = "\x{6728}";
echo $char;  // Output: 木

Ruby:

char = "\u{6728}"
puts char  # Output: 木

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006728";  /* Display: 木 */
}

HTML Decimal:

<p>HTML decimal: &#26408;</p>  <!-- Display: 木 -->

HTML Hexadecimal:

<p>HTML hex: &#x6728;</p>  <!-- Display: 木 -->

URL Encoding:

// 木 URL encoding
https://unicodefinder.com/search.php?query=%E6%9C%A8

Encodings

MD5:

e0a5e08af3c1309c881b551516c282c5

SHA1:

8294db3a2006ae4a321f7f24d76942cf922c6c2e

Base64:

5pyo