Unicode Finder

"豧" U+8C67(CJK UNIFIED IDEOGRAPH-8C67)

U+8C67
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8C67

Programming

C
\u8C67
JavaScript
\u8C67
Java
\u8C67
Json
\u8C67
Python
\u8C67
Perl
\x{8C67}
PHP
\x{8C67}
Ruby
\u{8C67}
Rust
\u{8C67}
Go
\u8C67

Web

CSS
\008C67
HtmlDecimal
豧
HtmlHexadecimal
豧
Url
%E8%B1%A7

Code

MD5
3a3540ec3739ecbf3fed48b915e20352
Sha1
f7d745e07105a4e530a483552ada6ac3c7d3fddd
Base64
6LGn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8C67';
console.log(char);  // Output: 豧

Java:

char c = '\u8C67';
System.out.println(c);  // Output: 豧

JSON:

{"text": "\u8C67"}  // Value: 豧

Python:

char = '\u8C67'
print(char)  # Output: 豧

Perl:

my $char = "\x{8C67}";
print $char;  # Output: 豧

PHP:

$char = "\x{8C67}";
echo $char;  // Output: 豧

Ruby:

char = "\u{8C67}"
puts char  # Output: 豧

Rust:

let c = '\u{8C67}';
println!("{}", c);  // Output: 豧

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008C67";  /* Display: 豧 */
}

HTML Decimal:

<p>HTML decimal: &#35943;</p>  <!-- Display: 豧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C67;</p>  <!-- Display: 豧 -->

URL Encoding:

// 豧 URL encoding
https://unicodefinder.com/search.php?query=%E8%B1%A7

Encodings

MD5:

3a3540ec3739ecbf3fed48b915e20352

SHA1:

f7d745e07105a4e530a483552ada6ac3c7d3fddd

Base64:

6LGn