Unicode Finder

"朲" U+6732(CJK UNIFIED IDEOGRAPH-6732)

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

Programming

C
\u6732
JavaScript
\u6732
Java
\u6732
Json
\u6732
Python
\u6732
Perl
\x{6732}
PHP
\x{6732}
Ruby
\u{6732}
Rust
\u{6732}
Go
\u6732

Web

CSS
\006732
HtmlDecimal
朲
HtmlHexadecimal
朲
Url
%E6%9C%B2

Code

MD5
9931143b350cdf51c4809acffbc9c4b7
Sha1
f3cde57fca787e5c0fa99e6b66797dc891ebf701
Base64
5pyy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6732';
console.log(char);  // Output: 朲

Java:

char c = '\u6732';
System.out.println(c);  // Output: 朲

JSON:

{"text": "\u6732"}  // Value: 朲

Python:

char = '\u6732'
print(char)  # Output: 朲

Perl:

my $char = "\x{6732}";
print $char;  # Output: 朲

PHP:

$char = "\x{6732}";
echo $char;  // Output: 朲

Ruby:

char = "\u{6732}"
puts char  # Output: 朲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006732";  /* Display: 朲 */
}

HTML Decimal:

<p>HTML decimal: &#26418;</p>  <!-- Display: 朲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6732;</p>  <!-- Display: 朲 -->

URL Encoding:

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

Encodings

MD5:

9931143b350cdf51c4809acffbc9c4b7

SHA1:

f3cde57fca787e5c0fa99e6b66797dc891ebf701

Base64:

5pyy