Unicode Finder

"葘" U+8458(CJK UNIFIED IDEOGRAPH-8458)

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

Programming

C
\u8458
JavaScript
\u8458
Java
\u8458
Json
\u8458
Python
\u8458
Perl
\x{8458}
PHP
\x{8458}
Ruby
\u{8458}
Rust
\u{8458}
Go
\u8458

Web

CSS
\008458
HtmlDecimal
葘
HtmlHexadecimal
葘
Url
%E8%91%98

Code

MD5
10ce75e2e1bccb7f4b9aaedeec5378e5
Sha1
09e9cc29f30855e3691a110f750eefb0abf9ca88
Base64
6JGY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8458';
console.log(char);  // Output: 葘

Java:

char c = '\u8458';
System.out.println(c);  // Output: 葘

JSON:

{"text": "\u8458"}  // Value: 葘

Python:

char = '\u8458'
print(char)  # Output: 葘

Perl:

my $char = "\x{8458}";
print $char;  # Output: 葘

PHP:

$char = "\x{8458}";
echo $char;  // Output: 葘

Ruby:

char = "\u{8458}"
puts char  # Output: 葘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008458";  /* Display: 葘 */
}

HTML Decimal:

<p>HTML decimal: &#33880;</p>  <!-- Display: 葘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8458;</p>  <!-- Display: 葘 -->

URL Encoding:

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

Encodings

MD5:

10ce75e2e1bccb7f4b9aaedeec5378e5

SHA1:

09e9cc29f30855e3691a110f750eefb0abf9ca88

Base64:

6JGY