Unicode Finder

"豬" U+8C6C(CJK UNIFIED IDEOGRAPH-8C6C)

U+8C6C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8C6C

Programming

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

Web

CSS
\008C6C
HtmlDecimal
豬
HtmlHexadecimal
豬
Url
%E8%B1%AC

Code

MD5
2c3c8912564092bf86ad5be6c9ef3b61
Sha1
b28bd16d2ac5bb5bbeaecc078fcbda09e443597f
Base64
6LGs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C6C';
console.log(char);  // Output: 豬

Java:

char c = '\u8C6C';
System.out.println(c);  // Output: 豬

JSON:

{"text": "\u8C6C"}  // Value: 豬

Python:

char = '\u8C6C'
print(char)  # Output: 豬

Perl:

my $char = "\x{8C6C}";
print $char;  # Output: 豬

PHP:

$char = "\x{8C6C}";
echo $char;  // Output: 豬

Ruby:

char = "\u{8C6C}"
puts char  # Output: 豬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35948;</p>  <!-- Display: 豬 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C6C;</p>  <!-- Display: 豬 -->

URL Encoding:

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

Encodings

MD5:

2c3c8912564092bf86ad5be6c9ef3b61

SHA1:

b28bd16d2ac5bb5bbeaecc078fcbda09e443597f

Base64:

6LGs