Unicode Finder

"艖" U+8256(CJK UNIFIED IDEOGRAPH-8256)

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

Programming

C
\u8256
JavaScript
\u8256
Java
\u8256
Json
\u8256
Python
\u8256
Perl
\x{8256}
PHP
\x{8256}
Ruby
\u{8256}
Rust
\u{8256}
Go
\u8256

Web

CSS
\008256
HtmlDecimal
艖
HtmlHexadecimal
艖
Url
%E8%89%96

Code

MD5
5575573206167c573ff6ba54e0c20521
Sha1
acf29c6f1cde2e48614a7e52b083511d4587d822
Base64
6ImW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8256';
console.log(char);  // Output: 艖

Java:

char c = '\u8256';
System.out.println(c);  // Output: 艖

JSON:

{"text": "\u8256"}  // Value: 艖

Python:

char = '\u8256'
print(char)  # Output: 艖

Perl:

my $char = "\x{8256}";
print $char;  # Output: 艖

PHP:

$char = "\x{8256}";
echo $char;  // Output: 艖

Ruby:

char = "\u{8256}"
puts char  # Output: 艖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008256";  /* Display: 艖 */
}

HTML Decimal:

<p>HTML decimal: &#33366;</p>  <!-- Display: 艖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8256;</p>  <!-- Display: 艖 -->

URL Encoding:

// 艖 URL encoding
https://unicodefinder.com/search.php?query=%E8%89%96

Encodings

MD5:

5575573206167c573ff6ba54e0c20521

SHA1:

acf29c6f1cde2e48614a7e52b083511d4587d822

Base64:

6ImW