Unicode Finder

"朌" U+670C(CJK UNIFIED IDEOGRAPH-670C)

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

Programming

C
\u670C
JavaScript
\u670C
Java
\u670C
Json
\u670C
Python
\u670C
Perl
\x{670C}
PHP
\x{670C}
Ruby
\u{670C}
Rust
\u{670C}
Go
\u670C

Web

CSS
\00670C
HtmlDecimal
朌
HtmlHexadecimal
朌
Url
%E6%9C%8C

Code

MD5
aa59dd96b3970d7720c2b275a9248ba2
Sha1
4efa5a2643e0df66acb5f01d4482df3369cebc18
Base64
5pyM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u670C';
console.log(char);  // Output: 朌

Java:

char c = '\u670C';
System.out.println(c);  // Output: 朌

JSON:

{"text": "\u670C"}  // Value: 朌

Python:

char = '\u670C'
print(char)  # Output: 朌

Perl:

my $char = "\x{670C}";
print $char;  # Output: 朌

PHP:

$char = "\x{670C}";
echo $char;  // Output: 朌

Ruby:

char = "\u{670C}"
puts char  # Output: 朌

Rust:

let c = '\u{670C}';
println!("{}", c);  // Output: 朌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00670C";  /* Display: 朌 */
}

HTML Decimal:

<p>HTML decimal: &#26380;</p>  <!-- Display: 朌 -->

HTML Hexadecimal:

<p>HTML hex: &#x670C;</p>  <!-- Display: 朌 -->

URL Encoding:

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

Encodings

MD5:

aa59dd96b3970d7720c2b275a9248ba2

SHA1:

4efa5a2643e0df66acb5f01d4482df3369cebc18

Base64:

5pyM