Unicode Finder

"朵" U+6735(CJK UNIFIED IDEOGRAPH-6735)

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

Programming

C
\u6735
JavaScript
\u6735
Java
\u6735
Json
\u6735
Python
\u6735
Perl
\x{6735}
PHP
\x{6735}
Ruby
\u{6735}
Rust
\u{6735}
Go
\u6735

Web

CSS
\006735
HtmlDecimal
朵
HtmlHexadecimal
朵
Url
%E6%9C%B5

Code

MD5
b4934ce96d3e470adb51af0b51013958
Sha1
7fb98f22b92cfb20614f7bf8113b134a67798a30
Base64
5py1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6735';
console.log(char);  // Output: 朵

Java:

char c = '\u6735';
System.out.println(c);  // Output: 朵

JSON:

{"text": "\u6735"}  // Value: 朵

Python:

char = '\u6735'
print(char)  # Output: 朵

Perl:

my $char = "\x{6735}";
print $char;  # Output: 朵

PHP:

$char = "\x{6735}";
echo $char;  // Output: 朵

Ruby:

char = "\u{6735}"
puts char  # Output: 朵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006735";  /* Display: 朵 */
}

HTML Decimal:

<p>HTML decimal: &#26421;</p>  <!-- Display: 朵 -->

HTML Hexadecimal:

<p>HTML hex: &#x6735;</p>  <!-- Display: 朵 -->

URL Encoding:

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

Encodings

MD5:

b4934ce96d3e470adb51af0b51013958

SHA1:

7fb98f22b92cfb20614f7bf8113b134a67798a30

Base64:

5py1