Unicode Finder

"葜" U+845C(CJK UNIFIED IDEOGRAPH-845C)

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

Programming

C
\u845C
JavaScript
\u845C
Java
\u845C
Json
\u845C
Python
\u845C
Perl
\x{845C}
PHP
\x{845C}
Ruby
\u{845C}
Rust
\u{845C}
Go
\u845C

Web

CSS
\00845C
HtmlDecimal
葜
HtmlHexadecimal
葜
Url
%E8%91%9C

Code

MD5
93d2b488735da846d8561f130a78e9a5
Sha1
0a201dd5d774059677044282cd7e16fd23622ff9
Base64
6JGc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u845C';
console.log(char);  // Output: 葜

Java:

char c = '\u845C';
System.out.println(c);  // Output: 葜

JSON:

{"text": "\u845C"}  // Value: 葜

Python:

char = '\u845C'
print(char)  # Output: 葜

Perl:

my $char = "\x{845C}";
print $char;  # Output: 葜

PHP:

$char = "\x{845C}";
echo $char;  // Output: 葜

Ruby:

char = "\u{845C}"
puts char  # Output: 葜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33884;</p>  <!-- Display: 葜 -->

HTML Hexadecimal:

<p>HTML hex: &#x845C;</p>  <!-- Display: 葜 -->

URL Encoding:

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

Encodings

MD5:

93d2b488735da846d8561f130a78e9a5

SHA1:

0a201dd5d774059677044282cd7e16fd23622ff9

Base64:

6JGc