Unicode Finder

"节" U+8282(CJK UNIFIED IDEOGRAPH-8282)

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

Programming

C
\u8282
JavaScript
\u8282
Java
\u8282
Json
\u8282
Python
\u8282
Perl
\x{8282}
PHP
\x{8282}
Ruby
\u{8282}
Rust
\u{8282}
Go
\u8282

Web

CSS
\008282
HtmlDecimal
节
HtmlHexadecimal
节
Url
%E8%8A%82

Code

MD5
acc33a821d78d14dbe6a2e3be802d766
Sha1
9044735f6ca1cbae55ffe99ea2b740947a48fbe6
Base64
6IqC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8282';
console.log(char);  // Output: 节

Java:

char c = '\u8282';
System.out.println(c);  // Output: 节

JSON:

{"text": "\u8282"}  // Value: 节

Python:

char = '\u8282'
print(char)  # Output: 节

Perl:

my $char = "\x{8282}";
print $char;  # Output: 节

PHP:

$char = "\x{8282}";
echo $char;  // Output: 节

Ruby:

char = "\u{8282}"
puts char  # Output: 节

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008282";  /* Display: 节 */
}

HTML Decimal:

<p>HTML decimal: &#33410;</p>  <!-- Display: 节 -->

HTML Hexadecimal:

<p>HTML hex: &#x8282;</p>  <!-- Display: 节 -->

URL Encoding:

// 节 URL encoding
https://unicodefinder.com/search.php?query=%E8%8A%82

Encodings

MD5:

acc33a821d78d14dbe6a2e3be802d766

SHA1:

9044735f6ca1cbae55ffe99ea2b740947a48fbe6

Base64:

6IqC