Unicode Finder

"蓬" U+84EC(CJK UNIFIED IDEOGRAPH-84EC)

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

Programming

C
\u84EC
JavaScript
\u84EC
Java
\u84EC
Json
\u84EC
Python
\u84EC
Perl
\x{84EC}
PHP
\x{84EC}
Ruby
\u{84EC}
Rust
\u{84EC}
Go
\u84EC

Web

CSS
\0084EC
HtmlDecimal
蓬
HtmlHexadecimal
蓬
Url
%E8%93%AC

Code

MD5
883c5bd630d0a66bdc345885bbc46a8b
Sha1
2db6646a3c4cfcbdbaff51562eace8f13e2b55aa
Base64
6JOs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u84EC';
console.log(char);  // Output: 蓬

Java:

char c = '\u84EC';
System.out.println(c);  // Output: 蓬

JSON:

{"text": "\u84EC"}  // Value: 蓬

Python:

char = '\u84EC'
print(char)  # Output: 蓬

Perl:

my $char = "\x{84EC}";
print $char;  # Output: 蓬

PHP:

$char = "\x{84EC}";
echo $char;  // Output: 蓬

Ruby:

char = "\u{84EC}"
puts char  # Output: 蓬

Rust:

let c = '\u{84EC}';
println!("{}", c);  // Output: 蓬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0084EC";  /* Display: 蓬 */
}

HTML Decimal:

<p>HTML decimal: &#34028;</p>  <!-- Display: 蓬 -->

HTML Hexadecimal:

<p>HTML hex: &#x84EC;</p>  <!-- Display: 蓬 -->

URL Encoding:

// 蓬 URL encoding
https://unicodefinder.com/search.php?query=%E8%93%AC

Encodings

MD5:

883c5bd630d0a66bdc345885bbc46a8b

SHA1:

2db6646a3c4cfcbdbaff51562eace8f13e2b55aa

Base64:

6JOs