Unicode Finder

"朙" U+6719(CJK UNIFIED IDEOGRAPH-6719)

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

Programming

C
\u6719
JavaScript
\u6719
Java
\u6719
Json
\u6719
Python
\u6719
Perl
\x{6719}
PHP
\x{6719}
Ruby
\u{6719}
Rust
\u{6719}
Go
\u6719

Web

CSS
\006719
HtmlDecimal
朙
HtmlHexadecimal
朙
Url
%E6%9C%99

Code

MD5
c405444d0af2bf829fb728bbe6a3b03c
Sha1
0134c0190bd9e5a10a8a7557135adb3463c39cb3
Base64
5pyZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6719';
console.log(char);  // Output: 朙

Java:

char c = '\u6719';
System.out.println(c);  // Output: 朙

JSON:

{"text": "\u6719"}  // Value: 朙

Python:

char = '\u6719'
print(char)  # Output: 朙

Perl:

my $char = "\x{6719}";
print $char;  # Output: 朙

PHP:

$char = "\x{6719}";
echo $char;  // Output: 朙

Ruby:

char = "\u{6719}"
puts char  # Output: 朙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006719";  /* Display: 朙 */
}

HTML Decimal:

<p>HTML decimal: &#26393;</p>  <!-- Display: 朙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6719;</p>  <!-- Display: 朙 -->

URL Encoding:

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

Encodings

MD5:

c405444d0af2bf829fb728bbe6a3b03c

SHA1:

0134c0190bd9e5a10a8a7557135adb3463c39cb3

Base64:

5pyZ