Unicode Finder

"蔰" U+8530(CJK UNIFIED IDEOGRAPH-8530)

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

Programming

C
\u8530
JavaScript
\u8530
Java
\u8530
Json
\u8530
Python
\u8530
Perl
\x{8530}
PHP
\x{8530}
Ruby
\u{8530}
Rust
\u{8530}
Go
\u8530

Web

CSS
\008530
HtmlDecimal
蔰
HtmlHexadecimal
蔰
Url
%E8%94%B0

Code

MD5
ae59f064feed10d5366be61bf38ac904
Sha1
53693c15ec69515ab52089038b46f2228e01aac3
Base64
6JSw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8530';
console.log(char);  // Output: 蔰

Java:

char c = '\u8530';
System.out.println(c);  // Output: 蔰

JSON:

{"text": "\u8530"}  // Value: 蔰

Python:

char = '\u8530'
print(char)  # Output: 蔰

Perl:

my $char = "\x{8530}";
print $char;  # Output: 蔰

PHP:

$char = "\x{8530}";
echo $char;  // Output: 蔰

Ruby:

char = "\u{8530}"
puts char  # Output: 蔰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008530";  /* Display: 蔰 */
}

HTML Decimal:

<p>HTML decimal: &#34096;</p>  <!-- Display: 蔰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8530;</p>  <!-- Display: 蔰 -->

URL Encoding:

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

Encodings

MD5:

ae59f064feed10d5366be61bf38ac904

SHA1:

53693c15ec69515ab52089038b46f2228e01aac3

Base64:

6JSw