Unicode Finder

"葭" U+846D(CJK UNIFIED IDEOGRAPH-846D)

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

Programming

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

Web

CSS
\00846D
HtmlDecimal
葭
HtmlHexadecimal
葭
Url
%E8%91%AD

Code

MD5
a46c0c7a19e631c87d2b7178ffb01898
Sha1
a7bd7b5f76c43c83129a85d2270c661d0d87e5ca
Base64
6JGt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u846D';
console.log(char);  // Output: 葭

Java:

char c = '\u846D';
System.out.println(c);  // Output: 葭

JSON:

{"text": "\u846D"}  // Value: 葭

Python:

char = '\u846D'
print(char)  # Output: 葭

Perl:

my $char = "\x{846D}";
print $char;  # Output: 葭

PHP:

$char = "\x{846D}";
echo $char;  // Output: 葭

Ruby:

char = "\u{846D}"
puts char  # Output: 葭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33901;</p>  <!-- Display: 葭 -->

HTML Hexadecimal:

<p>HTML hex: &#x846D;</p>  <!-- Display: 葭 -->

URL Encoding:

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

Encodings

MD5:

a46c0c7a19e631c87d2b7178ffb01898

SHA1:

a7bd7b5f76c43c83129a85d2270c661d0d87e5ca

Base64:

6JGt