Unicode Finder

"邖" U+9096(CJK UNIFIED IDEOGRAPH-9096)

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

Programming

C
\u9096
JavaScript
\u9096
Java
\u9096
Json
\u9096
Python
\u9096
Perl
\x{9096}
PHP
\x{9096}
Ruby
\u{9096}
Rust
\u{9096}
Go
\u9096

Web

CSS
\009096
HtmlDecimal
邖
HtmlHexadecimal
邖
Url
%E9%82%96

Code

MD5
fa2f9cb1bfc69f90beda5c08d988576b
Sha1
fd28fed29605f9d7e7b9911086f548fc6ac9b9fc
Base64
6YKW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9096';
console.log(char);  // Output: 邖

Java:

char c = '\u9096';
System.out.println(c);  // Output: 邖

JSON:

{"text": "\u9096"}  // Value: 邖

Python:

char = '\u9096'
print(char)  # Output: 邖

Perl:

my $char = "\x{9096}";
print $char;  # Output: 邖

PHP:

$char = "\x{9096}";
echo $char;  // Output: 邖

Ruby:

char = "\u{9096}"
puts char  # Output: 邖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009096";  /* Display: 邖 */
}

HTML Decimal:

<p>HTML decimal: &#37014;</p>  <!-- Display: 邖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9096;</p>  <!-- Display: 邖 -->

URL Encoding:

// 邖 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%96

Encodings

MD5:

fa2f9cb1bfc69f90beda5c08d988576b

SHA1:

fd28fed29605f9d7e7b9911086f548fc6ac9b9fc

Base64:

6YKW