Unicode Finder

"蔱" U+8531(CJK UNIFIED IDEOGRAPH-8531)

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

Programming

C
\u8531
JavaScript
\u8531
Java
\u8531
Json
\u8531
Python
\u8531
Perl
\x{8531}
PHP
\x{8531}
Ruby
\u{8531}
Rust
\u{8531}
Go
\u8531

Web

CSS
\008531
HtmlDecimal
蔱
HtmlHexadecimal
蔱
Url
%E8%94%B1

Code

MD5
3b89918493d7b0ec151138c666fb52cb
Sha1
60f694bcd669fb6f23c81f1a4c5a23e9e31e9f29
Base64
6JSx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8531';
console.log(char);  // Output: 蔱

Java:

char c = '\u8531';
System.out.println(c);  // Output: 蔱

JSON:

{"text": "\u8531"}  // Value: 蔱

Python:

char = '\u8531'
print(char)  # Output: 蔱

Perl:

my $char = "\x{8531}";
print $char;  # Output: 蔱

PHP:

$char = "\x{8531}";
echo $char;  // Output: 蔱

Ruby:

char = "\u{8531}"
puts char  # Output: 蔱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008531";  /* Display: 蔱 */
}

HTML Decimal:

<p>HTML decimal: &#34097;</p>  <!-- Display: 蔱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8531;</p>  <!-- Display: 蔱 -->

URL Encoding:

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

Encodings

MD5:

3b89918493d7b0ec151138c666fb52cb

SHA1:

60f694bcd669fb6f23c81f1a4c5a23e9e31e9f29

Base64:

6JSx