Unicode Finder

"朧" U+6727(CJK UNIFIED IDEOGRAPH-6727)

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

Programming

C
\u6727
JavaScript
\u6727
Java
\u6727
Json
\u6727
Python
\u6727
Perl
\x{6727}
PHP
\x{6727}
Ruby
\u{6727}
Rust
\u{6727}
Go
\u6727

Web

CSS
\006727
HtmlDecimal
朧
HtmlHexadecimal
朧
Url
%E6%9C%A7

Code

MD5
ee686e84e281ba6b7c05547429002271
Sha1
91507e0f9b6b49d81b4555085528879cc2a36e66
Base64
5pyn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6727';
console.log(char);  // Output: 朧

Java:

char c = '\u6727';
System.out.println(c);  // Output: 朧

JSON:

{"text": "\u6727"}  // Value: 朧

Python:

char = '\u6727'
print(char)  # Output: 朧

Perl:

my $char = "\x{6727}";
print $char;  # Output: 朧

PHP:

$char = "\x{6727}";
echo $char;  // Output: 朧

Ruby:

char = "\u{6727}"
puts char  # Output: 朧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006727";  /* Display: 朧 */
}

HTML Decimal:

<p>HTML decimal: &#26407;</p>  <!-- Display: 朧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6727;</p>  <!-- Display: 朧 -->

URL Encoding:

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

Encodings

MD5:

ee686e84e281ba6b7c05547429002271

SHA1:

91507e0f9b6b49d81b4555085528879cc2a36e66

Base64:

5pyn