Unicode Finder

"豃" U+8C43(CJK UNIFIED IDEOGRAPH-8C43)

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

Programming

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

Web

CSS
\008C43
HtmlDecimal
豃
HtmlHexadecimal
豃
Url
%E8%B1%83

Code

MD5
5fc4dbdabb44de5edaf8a5b3ed32784a
Sha1
341584d1fac1add4dcaa04bfa6df167557259cb9
Base64
6LGD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C43';
console.log(char);  // Output: 豃

Java:

char c = '\u8C43';
System.out.println(c);  // Output: 豃

JSON:

{"text": "\u8C43"}  // Value: 豃

Python:

char = '\u8C43'
print(char)  # Output: 豃

Perl:

my $char = "\x{8C43}";
print $char;  # Output: 豃

PHP:

$char = "\x{8C43}";
echo $char;  // Output: 豃

Ruby:

char = "\u{8C43}"
puts char  # Output: 豃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35907;</p>  <!-- Display: 豃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C43;</p>  <!-- Display: 豃 -->

URL Encoding:

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

Encodings

MD5:

5fc4dbdabb44de5edaf8a5b3ed32784a

SHA1:

341584d1fac1add4dcaa04bfa6df167557259cb9

Base64:

6LGD