Unicode Finder

"碂" U+7882(CJK UNIFIED IDEOGRAPH-7882)

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

Programming

C
\u7882
JavaScript
\u7882
Java
\u7882
Json
\u7882
Python
\u7882
Perl
\x{7882}
PHP
\x{7882}
Ruby
\u{7882}
Rust
\u{7882}
Go
\u7882

Web

CSS
\007882
HtmlDecimal
碂
HtmlHexadecimal
碂
Url
%E7%A2%82

Code

MD5
13f2c6ca85745294dd56ab5809e3546c
Sha1
041ab59dcb69b3ae5322129e0edf681ddf896276
Base64
56KC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7882';
console.log(char);  // Output: 碂

Java:

char c = '\u7882';
System.out.println(c);  // Output: 碂

JSON:

{"text": "\u7882"}  // Value: 碂

Python:

char = '\u7882'
print(char)  # Output: 碂

Perl:

my $char = "\x{7882}";
print $char;  # Output: 碂

PHP:

$char = "\x{7882}";
echo $char;  // Output: 碂

Ruby:

char = "\u{7882}"
puts char  # Output: 碂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007882";  /* Display: 碂 */
}

HTML Decimal:

<p>HTML decimal: &#30850;</p>  <!-- Display: 碂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7882;</p>  <!-- Display: 碂 -->

URL Encoding:

// 碂 URL encoding
https://unicodefinder.com/search.php?query=%E7%A2%82

Encodings

MD5:

13f2c6ca85745294dd56ab5809e3546c

SHA1:

041ab59dcb69b3ae5322129e0edf681ddf896276

Base64:

56KC