Unicode Finder

"籖" U+7C56(CJK UNIFIED IDEOGRAPH-7C56)

U+7C56
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7C56

Programming

C
\u7C56
JavaScript
\u7C56
Java
\u7C56
Json
\u7C56
Python
\u7C56
Perl
\x{7C56}
PHP
\x{7C56}
Ruby
\u{7C56}
Rust
\u{7C56}
Go
\u7C56

Web

CSS
\007C56
HtmlDecimal
籖
HtmlHexadecimal
籖
Url
%E7%B1%96

Code

MD5
ed674fed9913239a5787e2341c948cee
Sha1
3dd9d081e7b3481c75681551802ca37b51e0da7b
Base64
57GW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C56';
console.log(char);  // Output: 籖

Java:

char c = '\u7C56';
System.out.println(c);  // Output: 籖

JSON:

{"text": "\u7C56"}  // Value: 籖

Python:

char = '\u7C56'
print(char)  # Output: 籖

Perl:

my $char = "\x{7C56}";
print $char;  # Output: 籖

PHP:

$char = "\x{7C56}";
echo $char;  // Output: 籖

Ruby:

char = "\u{7C56}"
puts char  # Output: 籖

Rust:

let c = '\u{7C56}';
println!("{}", c);  // Output: 籖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C56";  /* Display: 籖 */
}

HTML Decimal:

<p>HTML decimal: &#31830;</p>  <!-- Display: 籖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C56;</p>  <!-- Display: 籖 -->

URL Encoding:

// 籖 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%96

Encodings

MD5:

ed674fed9913239a5787e2341c948cee

SHA1:

3dd9d081e7b3481c75681551802ca37b51e0da7b

Base64:

57GW