Unicode Finder

"柜" U+67DC(CJK UNIFIED IDEOGRAPH-67DC)

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

Programming

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

Web

CSS
\0067DC
HtmlDecimal
柜
HtmlHexadecimal
柜
Url
%E6%9F%9C

Code

MD5
e84c102092aa2e7bfbc8595fc4517461
Sha1
a2a868ffe333879779db066199b1356eadb89753
Base64
5p+c

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u67DC';
console.log(char);  // Output: 柜

Java:

char c = '\u67DC';
System.out.println(c);  // Output: 柜

JSON:

{"text": "\u67DC"}  // Value: 柜

Python:

char = '\u67DC'
print(char)  # Output: 柜

Perl:

my $char = "\x{67DC}";
print $char;  # Output: 柜

PHP:

$char = "\x{67DC}";
echo $char;  // Output: 柜

Ruby:

char = "\u{67DC}"
puts char  # Output: 柜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26588;</p>  <!-- Display: 柜 -->

HTML Hexadecimal:

<p>HTML hex: &#x67DC;</p>  <!-- Display: 柜 -->

URL Encoding:

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

Encodings

MD5:

e84c102092aa2e7bfbc8595fc4517461

SHA1:

a2a868ffe333879779db066199b1356eadb89753

Base64:

5p+c