Unicode Finder

"朱" U+6731(CJK UNIFIED IDEOGRAPH-6731)

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

Programming

C
\u6731
JavaScript
\u6731
Java
\u6731
Json
\u6731
Python
\u6731
Perl
\x{6731}
PHP
\x{6731}
Ruby
\u{6731}
Rust
\u{6731}
Go
\u6731

Web

CSS
\006731
HtmlDecimal
朱
HtmlHexadecimal
朱
Url
%E6%9C%B1

Code

MD5
de2bfb144a63146b22077a7a1d46d13b
Sha1
8f4837f694d8bb69bee062c35775d3a5bd4b4929
Base64
5pyx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6731';
console.log(char);  // Output: 朱

Java:

char c = '\u6731';
System.out.println(c);  // Output: 朱

JSON:

{"text": "\u6731"}  // Value: 朱

Python:

char = '\u6731'
print(char)  # Output: 朱

Perl:

my $char = "\x{6731}";
print $char;  # Output: 朱

PHP:

$char = "\x{6731}";
echo $char;  // Output: 朱

Ruby:

char = "\u{6731}"
puts char  # Output: 朱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006731";  /* Display: 朱 */
}

HTML Decimal:

<p>HTML decimal: &#26417;</p>  <!-- Display: 朱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6731;</p>  <!-- Display: 朱 -->

URL Encoding:

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

Encodings

MD5:

de2bfb144a63146b22077a7a1d46d13b

SHA1:

8f4837f694d8bb69bee062c35775d3a5bd4b4929

Base64:

5pyx