Unicode Finder

"蕰" U+8570(CJK UNIFIED IDEOGRAPH-8570)

U+8570
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8570

Programming

C
\u8570
JavaScript
\u8570
Java
\u8570
Json
\u8570
Python
\u8570
Perl
\x{8570}
PHP
\x{8570}
Ruby
\u{8570}
Rust
\u{8570}
Go
\u8570

Web

CSS
\008570
HtmlDecimal
蕰
HtmlHexadecimal
蕰
Url
%E8%95%B0

Code

MD5
6399ee73fee1fc78f4669606820f342d
Sha1
a72831743e809a7960cc62a98d76b7698dc35553
Base64
6JWw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8570';
console.log(char);  // Output: 蕰

Java:

char c = '\u8570';
System.out.println(c);  // Output: 蕰

JSON:

{"text": "\u8570"}  // Value: 蕰

Python:

char = '\u8570'
print(char)  # Output: 蕰

Perl:

my $char = "\x{8570}";
print $char;  # Output: 蕰

PHP:

$char = "\x{8570}";
echo $char;  // Output: 蕰

Ruby:

char = "\u{8570}"
puts char  # Output: 蕰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008570";  /* Display: 蕰 */
}

HTML Decimal:

<p>HTML decimal: &#34160;</p>  <!-- Display: 蕰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8570;</p>  <!-- Display: 蕰 -->

URL Encoding:

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

Encodings

MD5:

6399ee73fee1fc78f4669606820f342d

SHA1:

a72831743e809a7960cc62a98d76b7698dc35553

Base64:

6JWw