Unicode Finder

"葬" U+846C(CJK UNIFIED IDEOGRAPH-846C)

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

Programming

C
\u846C
JavaScript
\u846C
Java
\u846C
Json
\u846C
Python
\u846C
Perl
\x{846C}
PHP
\x{846C}
Ruby
\u{846C}
Rust
\u{846C}
Go
\u846C

Web

CSS
\00846C
HtmlDecimal
葬
HtmlHexadecimal
葬
Url
%E8%91%AC

Code

MD5
93321fceefcabebe0bf155cde5a5c1b0
Sha1
e8210ed83506ffcb87eb986f4c24a70a35531180
Base64
6JGs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u846C';
console.log(char);  // Output: 葬

Java:

char c = '\u846C';
System.out.println(c);  // Output: 葬

JSON:

{"text": "\u846C"}  // Value: 葬

Python:

char = '\u846C'
print(char)  # Output: 葬

Perl:

my $char = "\x{846C}";
print $char;  # Output: 葬

PHP:

$char = "\x{846C}";
echo $char;  // Output: 葬

Ruby:

char = "\u{846C}"
puts char  # Output: 葬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33900;</p>  <!-- Display: 葬 -->

HTML Hexadecimal:

<p>HTML hex: &#x846C;</p>  <!-- Display: 葬 -->

URL Encoding:

// 葬 URL encoding
https://unicodefinder.com/search.php?query=%E8%91%AC

Encodings

MD5:

93321fceefcabebe0bf155cde5a5c1b0

SHA1:

e8210ed83506ffcb87eb986f4c24a70a35531180

Base64:

6JGs