Unicode Finder

"朒" U+6712(CJK UNIFIED IDEOGRAPH-6712)

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

Programming

C
\u6712
JavaScript
\u6712
Java
\u6712
Json
\u6712
Python
\u6712
Perl
\x{6712}
PHP
\x{6712}
Ruby
\u{6712}
Rust
\u{6712}
Go
\u6712

Web

CSS
\006712
HtmlDecimal
朒
HtmlHexadecimal
朒
Url
%E6%9C%92

Code

MD5
6bc3290e2345c4fbaa20c9485e31a403
Sha1
fc3bf96db6a93db67edf3371c3740cf3912d047d
Base64
5pyS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6712';
console.log(char);  // Output: 朒

Java:

char c = '\u6712';
System.out.println(c);  // Output: 朒

JSON:

{"text": "\u6712"}  // Value: 朒

Python:

char = '\u6712'
print(char)  # Output: 朒

Perl:

my $char = "\x{6712}";
print $char;  # Output: 朒

PHP:

$char = "\x{6712}";
echo $char;  // Output: 朒

Ruby:

char = "\u{6712}"
puts char  # Output: 朒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006712";  /* Display: 朒 */
}

HTML Decimal:

<p>HTML decimal: &#26386;</p>  <!-- Display: 朒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6712;</p>  <!-- Display: 朒 -->

URL Encoding:

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

Encodings

MD5:

6bc3290e2345c4fbaa20c9485e31a403

SHA1:

fc3bf96db6a93db67edf3371c3740cf3912d047d

Base64:

5pyS