Unicode Finder

"朓" U+6713(CJK UNIFIED IDEOGRAPH-6713)

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

Programming

C
\u6713
JavaScript
\u6713
Java
\u6713
Json
\u6713
Python
\u6713
Perl
\x{6713}
PHP
\x{6713}
Ruby
\u{6713}
Rust
\u{6713}
Go
\u6713

Web

CSS
\006713
HtmlDecimal
朓
HtmlHexadecimal
朓
Url
%E6%9C%93

Code

MD5
2d4562fa7ba49de1bd08c01072e0a73e
Sha1
4bf81dd6586918283b3bf0c074ad21938ba3f09c
Base64
5pyT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6713';
console.log(char);  // Output: 朓

Java:

char c = '\u6713';
System.out.println(c);  // Output: 朓

JSON:

{"text": "\u6713"}  // Value: 朓

Python:

char = '\u6713'
print(char)  # Output: 朓

Perl:

my $char = "\x{6713}";
print $char;  # Output: 朓

PHP:

$char = "\x{6713}";
echo $char;  // Output: 朓

Ruby:

char = "\u{6713}"
puts char  # Output: 朓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006713";  /* Display: 朓 */
}

HTML Decimal:

<p>HTML decimal: &#26387;</p>  <!-- Display: 朓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6713;</p>  <!-- Display: 朓 -->

URL Encoding:

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

Encodings

MD5:

2d4562fa7ba49de1bd08c01072e0a73e

SHA1:

4bf81dd6586918283b3bf0c074ad21938ba3f09c

Base64:

5pyT