Unicode Finder

"蔥" U+8525(CJK UNIFIED IDEOGRAPH-8525)

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

Programming

C
\u8525
JavaScript
\u8525
Java
\u8525
Json
\u8525
Python
\u8525
Perl
\x{8525}
PHP
\x{8525}
Ruby
\u{8525}
Rust
\u{8525}
Go
\u8525

Web

CSS
\008525
HtmlDecimal
蔥
HtmlHexadecimal
蔥
Url
%E8%94%A5

Code

MD5
1c22cfd293806240f2e9b5dd9b49cbb7
Sha1
e3c0bcba6c6c576bed4af9f0c05a9da42b6baa4d
Base64
6JSl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8525';
console.log(char);  // Output: 蔥

Java:

char c = '\u8525';
System.out.println(c);  // Output: 蔥

JSON:

{"text": "\u8525"}  // Value: 蔥

Python:

char = '\u8525'
print(char)  # Output: 蔥

Perl:

my $char = "\x{8525}";
print $char;  # Output: 蔥

PHP:

$char = "\x{8525}";
echo $char;  // Output: 蔥

Ruby:

char = "\u{8525}"
puts char  # Output: 蔥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008525";  /* Display: 蔥 */
}

HTML Decimal:

<p>HTML decimal: &#34085;</p>  <!-- Display: 蔥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8525;</p>  <!-- Display: 蔥 -->

URL Encoding:

// 蔥 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%A5

Encodings

MD5:

1c22cfd293806240f2e9b5dd9b49cbb7

SHA1:

e3c0bcba6c6c576bed4af9f0c05a9da42b6baa4d

Base64:

6JSl