Unicode Finder

"朷" U+6737(CJK UNIFIED IDEOGRAPH-6737)

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

Programming

C
\u6737
JavaScript
\u6737
Java
\u6737
Json
\u6737
Python
\u6737
Perl
\x{6737}
PHP
\x{6737}
Ruby
\u{6737}
Rust
\u{6737}
Go
\u6737

Web

CSS
\006737
HtmlDecimal
朷
HtmlHexadecimal
朷
Url
%E6%9C%B7

Code

MD5
954e119139fedc6d61d778089e857fc4
Sha1
14a1f4a3952d12b3c87e84d315155ec59d8e6b27
Base64
5py3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6737';
console.log(char);  // Output: 朷

Java:

char c = '\u6737';
System.out.println(c);  // Output: 朷

JSON:

{"text": "\u6737"}  // Value: 朷

Python:

char = '\u6737'
print(char)  # Output: 朷

Perl:

my $char = "\x{6737}";
print $char;  # Output: 朷

PHP:

$char = "\x{6737}";
echo $char;  // Output: 朷

Ruby:

char = "\u{6737}"
puts char  # Output: 朷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006737";  /* Display: 朷 */
}

HTML Decimal:

<p>HTML decimal: &#26423;</p>  <!-- Display: 朷 -->

HTML Hexadecimal:

<p>HTML hex: &#x6737;</p>  <!-- Display: 朷 -->

URL Encoding:

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

Encodings

MD5:

954e119139fedc6d61d778089e857fc4

SHA1:

14a1f4a3952d12b3c87e84d315155ec59d8e6b27

Base64:

5py3