Unicode Finder

"柌" U+67CC(CJK UNIFIED IDEOGRAPH-67CC)

U+67CC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-67CC

Programming

C
\u67CC
JavaScript
\u67CC
Java
\u67CC
Json
\u67CC
Python
\u67CC
Perl
\x{67CC}
PHP
\x{67CC}
Ruby
\u{67CC}
Rust
\u{67CC}
Go
\u67CC

Web

CSS
\0067CC
HtmlDecimal
柌
HtmlHexadecimal
柌
Url
%E6%9F%8C

Code

MD5
0ec2b41f57876298cb8842bd6dc3e60b
Sha1
87cfc4cd0395b57e7f16e164a87375e029fe7939
Base64
5p+M

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u67CC';
console.log(char);  // Output: 柌

Java:

char c = '\u67CC';
System.out.println(c);  // Output: 柌

JSON:

{"text": "\u67CC"}  // Value: 柌

Python:

char = '\u67CC'
print(char)  # Output: 柌

Perl:

my $char = "\x{67CC}";
print $char;  # Output: 柌

PHP:

$char = "\x{67CC}";
echo $char;  // Output: 柌

Ruby:

char = "\u{67CC}"
puts char  # Output: 柌

Rust:

let c = '\u{67CC}';
println!("{}", c);  // Output: 柌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0067CC";  /* Display: 柌 */
}

HTML Decimal:

<p>HTML decimal: &#26572;</p>  <!-- Display: 柌 -->

HTML Hexadecimal:

<p>HTML hex: &#x67CC;</p>  <!-- Display: 柌 -->

URL Encoding:

// 柌 URL encoding
https://unicodefinder.com/search.php?query=%E6%9F%8C

Encodings

MD5:

0ec2b41f57876298cb8842bd6dc3e60b

SHA1:

87cfc4cd0395b57e7f16e164a87375e029fe7939

Base64:

5p+M