Unicode Finder

"葧" U+8467(CJK UNIFIED IDEOGRAPH-8467)

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

Programming

C
\u8467
JavaScript
\u8467
Java
\u8467
Json
\u8467
Python
\u8467
Perl
\x{8467}
PHP
\x{8467}
Ruby
\u{8467}
Rust
\u{8467}
Go
\u8467

Web

CSS
\008467
HtmlDecimal
葧
HtmlHexadecimal
葧
Url
%E8%91%A7

Code

MD5
a19d7cb3ca638d31d1fc24694e738ff3
Sha1
838b636f472919708e7dd000c65e830337704548
Base64
6JGn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8467';
console.log(char);  // Output: 葧

Java:

char c = '\u8467';
System.out.println(c);  // Output: 葧

JSON:

{"text": "\u8467"}  // Value: 葧

Python:

char = '\u8467'
print(char)  # Output: 葧

Perl:

my $char = "\x{8467}";
print $char;  # Output: 葧

PHP:

$char = "\x{8467}";
echo $char;  // Output: 葧

Ruby:

char = "\u{8467}"
puts char  # Output: 葧

Rust:

let c = '\u{8467}';
println!("{}", c);  // Output: 葧

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008467";  /* Display: 葧 */
}

HTML Decimal:

<p>HTML decimal: &#33895;</p>  <!-- Display: 葧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8467;</p>  <!-- Display: 葧 -->

URL Encoding:

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

Encodings

MD5:

a19d7cb3ca638d31d1fc24694e738ff3

SHA1:

838b636f472919708e7dd000c65e830337704548

Base64:

6JGn