Unicode Finder

"朹" U+6739(CJK UNIFIED IDEOGRAPH-6739)

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

Programming

C
\u6739
JavaScript
\u6739
Java
\u6739
Json
\u6739
Python
\u6739
Perl
\x{6739}
PHP
\x{6739}
Ruby
\u{6739}
Rust
\u{6739}
Go
\u6739

Web

CSS
\006739
HtmlDecimal
朹
HtmlHexadecimal
朹
Url
%E6%9C%B9

Code

MD5
b99c5f99eec8db6b1e3c1490c92cbe0b
Sha1
650285d5566d4b079c3e4c4cde17a5efbec67a95
Base64
5py5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6739';
console.log(char);  // Output: 朹

Java:

char c = '\u6739';
System.out.println(c);  // Output: 朹

JSON:

{"text": "\u6739"}  // Value: 朹

Python:

char = '\u6739'
print(char)  # Output: 朹

Perl:

my $char = "\x{6739}";
print $char;  # Output: 朹

PHP:

$char = "\x{6739}";
echo $char;  // Output: 朹

Ruby:

char = "\u{6739}"
puts char  # Output: 朹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006739";  /* Display: 朹 */
}

HTML Decimal:

<p>HTML decimal: &#26425;</p>  <!-- Display: 朹 -->

HTML Hexadecimal:

<p>HTML hex: &#x6739;</p>  <!-- Display: 朹 -->

URL Encoding:

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

Encodings

MD5:

b99c5f99eec8db6b1e3c1490c92cbe0b

SHA1:

650285d5566d4b079c3e4c4cde17a5efbec67a95

Base64:

5py5