Unicode Finder

"葌" U+844C(CJK UNIFIED IDEOGRAPH-844C)

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

Programming

C
\u844C
JavaScript
\u844C
Java
\u844C
Json
\u844C
Python
\u844C
Perl
\x{844C}
PHP
\x{844C}
Ruby
\u{844C}
Rust
\u{844C}
Go
\u844C

Web

CSS
\00844C
HtmlDecimal
葌
HtmlHexadecimal
葌
Url
%E8%91%8C

Code

MD5
d67c96512efdca451c1417b230cdd81d
Sha1
4cd2fa0e631646c122a530b9eccb3a2103854e0b
Base64
6JGM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u844C';
console.log(char);  // Output: 葌

Java:

char c = '\u844C';
System.out.println(c);  // Output: 葌

JSON:

{"text": "\u844C"}  // Value: 葌

Python:

char = '\u844C'
print(char)  # Output: 葌

Perl:

my $char = "\x{844C}";
print $char;  # Output: 葌

PHP:

$char = "\x{844C}";
echo $char;  // Output: 葌

Ruby:

char = "\u{844C}"
puts char  # Output: 葌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33868;</p>  <!-- Display: 葌 -->

HTML Hexadecimal:

<p>HTML hex: &#x844C;</p>  <!-- Display: 葌 -->

URL Encoding:

// 葌 URL encoding
https://unicodefinder.com/search.php?query=%E8%91%8C

Encodings

MD5:

d67c96512efdca451c1417b230cdd81d

SHA1:

4cd2fa0e631646c122a530b9eccb3a2103854e0b

Base64:

6JGM