Unicode Finder

"葝" U+845D(CJK UNIFIED IDEOGRAPH-845D)

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

Programming

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

Web

CSS
\00845D
HtmlDecimal
葝
HtmlHexadecimal
葝
Url
%E8%91%9D

Code

MD5
100bba3f587d65c2069cd5c3816376f8
Sha1
14f06909e5114548453e6bb39507408abf1e7dc3
Base64
6JGd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u845D';
console.log(char);  // Output: 葝

Java:

char c = '\u845D';
System.out.println(c);  // Output: 葝

JSON:

{"text": "\u845D"}  // Value: 葝

Python:

char = '\u845D'
print(char)  # Output: 葝

Perl:

my $char = "\x{845D}";
print $char;  # Output: 葝

PHP:

$char = "\x{845D}";
echo $char;  // Output: 葝

Ruby:

char = "\u{845D}"
puts char  # Output: 葝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33885;</p>  <!-- Display: 葝 -->

HTML Hexadecimal:

<p>HTML hex: &#x845D;</p>  <!-- Display: 葝 -->

URL Encoding:

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

Encodings

MD5:

100bba3f587d65c2069cd5c3816376f8

SHA1:

14f06909e5114548453e6bb39507408abf1e7dc3

Base64:

6JGd