Unicode Finder

"櫃" U+6AC3(CJK UNIFIED IDEOGRAPH-6AC3)

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

Programming

C
\u6AC3
JavaScript
\u6AC3
Java
\u6AC3
Json
\u6AC3
Python
\u6AC3
Perl
\x{6AC3}
PHP
\x{6AC3}
Ruby
\u{6AC3}
Rust
\u{6AC3}
Go
\u6AC3

Web

CSS
\006AC3
HtmlDecimal
櫃
HtmlHexadecimal
櫃
Url
%E6%AB%83

Code

MD5
c0d2752f00b241af78d50f5b19957a89
Sha1
1df68dc49647fd4fb25562faad4045200a03d668
Base64
5quD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AC3';
console.log(char);  // Output: 櫃

Java:

char c = '\u6AC3';
System.out.println(c);  // Output: 櫃

JSON:

{"text": "\u6AC3"}  // Value: 櫃

Python:

char = '\u6AC3'
print(char)  # Output: 櫃

Perl:

my $char = "\x{6AC3}";
print $char;  # Output: 櫃

PHP:

$char = "\x{6AC3}";
echo $char;  // Output: 櫃

Ruby:

char = "\u{6AC3}"
puts char  # Output: 櫃

Rust:

let c = '\u{6AC3}';
println!("{}", c);  // Output: 櫃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006AC3";  /* Display: 櫃 */
}

HTML Decimal:

<p>HTML decimal: &#27331;</p>  <!-- Display: 櫃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AC3;</p>  <!-- Display: 櫃 -->

URL Encoding:

// 櫃 URL encoding
https://unicodefinder.com/search.php?query=%E6%AB%83

Encodings

MD5:

c0d2752f00b241af78d50f5b19957a89

SHA1:

1df68dc49647fd4fb25562faad4045200a03d668

Base64:

5quD