Unicode Finder

"籦" U+7C66(CJK UNIFIED IDEOGRAPH-7C66)

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

Programming

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

Web

CSS
\007C66
HtmlDecimal
籦
HtmlHexadecimal
籦
Url
%E7%B1%A6

Code

MD5
8340dd51e939b7ae29377cbf6313c072
Sha1
6e8ceec843d0097baf2f149c43fa8074d1e8455f
Base64
57Gm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C66';
console.log(char);  // Output: 籦

Java:

char c = '\u7C66';
System.out.println(c);  // Output: 籦

JSON:

{"text": "\u7C66"}  // Value: 籦

Python:

char = '\u7C66'
print(char)  # Output: 籦

Perl:

my $char = "\x{7C66}";
print $char;  # Output: 籦

PHP:

$char = "\x{7C66}";
echo $char;  // Output: 籦

Ruby:

char = "\u{7C66}"
puts char  # Output: 籦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31846;</p>  <!-- Display: 籦 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C66;</p>  <!-- Display: 籦 -->

URL Encoding:

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

Encodings

MD5:

8340dd51e939b7ae29377cbf6313c072

SHA1:

6e8ceec843d0097baf2f149c43fa8074d1e8455f

Base64:

57Gm