Unicode Finder

"陪" U+966A(CJK UNIFIED IDEOGRAPH-966A)

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

Programming

C
\u966A
JavaScript
\u966A
Java
\u966A
Json
\u966A
Python
\u966A
Perl
\x{966A}
PHP
\x{966A}
Ruby
\u{966A}
Rust
\u{966A}
Go
\u966A

Web

CSS
\00966A
HtmlDecimal
陪
HtmlHexadecimal
陪
Url
%E9%99%AA

Code

MD5
2c34fc83b08d337e4768094bb8cd20e2
Sha1
93197cfbe0f69b418ec5d40a1c474aeb3cece92e
Base64
6Zmq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u966A';
console.log(char);  // Output: 陪

Java:

char c = '\u966A';
System.out.println(c);  // Output: 陪

JSON:

{"text": "\u966A"}  // Value: 陪

Python:

char = '\u966A'
print(char)  # Output: 陪

Perl:

my $char = "\x{966A}";
print $char;  # Output: 陪

PHP:

$char = "\x{966A}";
echo $char;  // Output: 陪

Ruby:

char = "\u{966A}"
puts char  # Output: 陪

Rust:

let c = '\u{966A}';
println!("{}", c);  // Output: 陪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00966A";  /* Display: 陪 */
}

HTML Decimal:

<p>HTML decimal: &#38506;</p>  <!-- Display: 陪 -->

HTML Hexadecimal:

<p>HTML hex: &#x966A;</p>  <!-- Display: 陪 -->

URL Encoding:

// 陪 URL encoding
https://unicodefinder.com/search.php?query=%E9%99%AA

Encodings

MD5:

2c34fc83b08d337e4768094bb8cd20e2

SHA1:

93197cfbe0f69b418ec5d40a1c474aeb3cece92e

Base64:

6Zmq