Unicode Finder

"豑" U+8C51(CJK UNIFIED IDEOGRAPH-8C51)

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

Programming

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

Web

CSS
\008C51
HtmlDecimal
豑
HtmlHexadecimal
豑
Url
%E8%B1%91

Code

MD5
9526887ab97294f29356747c2c3ff16e
Sha1
320eb872a74f4e3edaf415e8dfb0b76d9d17b7ae
Base64
6LGR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C51';
console.log(char);  // Output: 豑

Java:

char c = '\u8C51';
System.out.println(c);  // Output: 豑

JSON:

{"text": "\u8C51"}  // Value: 豑

Python:

char = '\u8C51'
print(char)  # Output: 豑

Perl:

my $char = "\x{8C51}";
print $char;  # Output: 豑

PHP:

$char = "\x{8C51}";
echo $char;  // Output: 豑

Ruby:

char = "\u{8C51}"
puts char  # Output: 豑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35921;</p>  <!-- Display: 豑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C51;</p>  <!-- Display: 豑 -->

URL Encoding:

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

Encodings

MD5:

9526887ab97294f29356747c2c3ff16e

SHA1:

320eb872a74f4e3edaf415e8dfb0b76d9d17b7ae

Base64:

6LGR