Unicode Finder

"蕉" U+8549(CJK UNIFIED IDEOGRAPH-8549)

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

Programming

C
\u8549
JavaScript
\u8549
Java
\u8549
Json
\u8549
Python
\u8549
Perl
\x{8549}
PHP
\x{8549}
Ruby
\u{8549}
Rust
\u{8549}
Go
\u8549

Web

CSS
\008549
HtmlDecimal
蕉
HtmlHexadecimal
蕉
Url
%E8%95%89

Code

MD5
3779c48539ba7a750efff0ac148f23fa
Sha1
5ac6e8d035b5f230a82409925763484dbad31591
Base64
6JWJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8549';
console.log(char);  // Output: 蕉

Java:

char c = '\u8549';
System.out.println(c);  // Output: 蕉

JSON:

{"text": "\u8549"}  // Value: 蕉

Python:

char = '\u8549'
print(char)  # Output: 蕉

Perl:

my $char = "\x{8549}";
print $char;  # Output: 蕉

PHP:

$char = "\x{8549}";
echo $char;  // Output: 蕉

Ruby:

char = "\u{8549}"
puts char  # Output: 蕉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008549";  /* Display: 蕉 */
}

HTML Decimal:

<p>HTML decimal: &#34121;</p>  <!-- Display: 蕉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8549;</p>  <!-- Display: 蕉 -->

URL Encoding:

// 蕉 URL encoding
https://unicodefinder.com/search.php?query=%E8%95%89

Encodings

MD5:

3779c48539ba7a750efff0ac148f23fa

SHA1:

5ac6e8d035b5f230a82409925763484dbad31591

Base64:

6JWJ