Unicode Finder

"蕠" U+8560(CJK UNIFIED IDEOGRAPH-8560)

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

Programming

C
\u8560
JavaScript
\u8560
Java
\u8560
Json
\u8560
Python
\u8560
Perl
\x{8560}
PHP
\x{8560}
Ruby
\u{8560}
Rust
\u{8560}
Go
\u8560

Web

CSS
\008560
HtmlDecimal
蕠
HtmlHexadecimal
蕠
Url
%E8%95%A0

Code

MD5
c23bb6e56c306ad6f061f9f2ee3c67f8
Sha1
722987211cd412fd2342bbe586236c87032bbaa8
Base64
6JWg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8560';
console.log(char);  // Output: 蕠

Java:

char c = '\u8560';
System.out.println(c);  // Output: 蕠

JSON:

{"text": "\u8560"}  // Value: 蕠

Python:

char = '\u8560'
print(char)  # Output: 蕠

Perl:

my $char = "\x{8560}";
print $char;  # Output: 蕠

PHP:

$char = "\x{8560}";
echo $char;  // Output: 蕠

Ruby:

char = "\u{8560}"
puts char  # Output: 蕠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008560";  /* Display: 蕠 */
}

HTML Decimal:

<p>HTML decimal: &#34144;</p>  <!-- Display: 蕠 -->

HTML Hexadecimal:

<p>HTML hex: &#x8560;</p>  <!-- Display: 蕠 -->

URL Encoding:

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

Encodings

MD5:

c23bb6e56c306ad6f061f9f2ee3c67f8

SHA1:

722987211cd412fd2342bbe586236c87032bbaa8

Base64:

6JWg