Unicode Finder

"蔧" U+8527(CJK UNIFIED IDEOGRAPH-8527)

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

Programming

C
\u8527
JavaScript
\u8527
Java
\u8527
Json
\u8527
Python
\u8527
Perl
\x{8527}
PHP
\x{8527}
Ruby
\u{8527}
Rust
\u{8527}
Go
\u8527

Web

CSS
\008527
HtmlDecimal
蔧
HtmlHexadecimal
蔧
Url
%E8%94%A7

Code

MD5
77a1b2dba02d14b9033e04ed8d744439
Sha1
2729c102edc8f29294faa656ad5386275cc60d21
Base64
6JSn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8527';
console.log(char);  // Output: 蔧

Java:

char c = '\u8527';
System.out.println(c);  // Output: 蔧

JSON:

{"text": "\u8527"}  // Value: 蔧

Python:

char = '\u8527'
print(char)  # Output: 蔧

Perl:

my $char = "\x{8527}";
print $char;  # Output: 蔧

PHP:

$char = "\x{8527}";
echo $char;  // Output: 蔧

Ruby:

char = "\u{8527}"
puts char  # Output: 蔧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008527";  /* Display: 蔧 */
}

HTML Decimal:

<p>HTML decimal: &#34087;</p>  <!-- Display: 蔧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8527;</p>  <!-- Display: 蔧 -->

URL Encoding:

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

Encodings

MD5:

77a1b2dba02d14b9033e04ed8d744439

SHA1:

2729c102edc8f29294faa656ad5386275cc60d21

Base64:

6JSn