Unicode Finder

"豞" U+8C5E(CJK UNIFIED IDEOGRAPH-8C5E)

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

Programming

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

Web

CSS
\008C5E
HtmlDecimal
豞
HtmlHexadecimal
豞
Url
%E8%B1%9E

Code

MD5
274277b0b2f9fc4e88299c1c0262f33c
Sha1
8e210d04b741bd78be1b9e41f640e9d84e4ea841
Base64
6LGe

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C5E';
console.log(char);  // Output: 豞

Java:

char c = '\u8C5E';
System.out.println(c);  // Output: 豞

JSON:

{"text": "\u8C5E"}  // Value: 豞

Python:

char = '\u8C5E'
print(char)  # Output: 豞

Perl:

my $char = "\x{8C5E}";
print $char;  # Output: 豞

PHP:

$char = "\x{8C5E}";
echo $char;  // Output: 豞

Ruby:

char = "\u{8C5E}"
puts char  # Output: 豞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35934;</p>  <!-- Display: 豞 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C5E;</p>  <!-- Display: 豞 -->

URL Encoding:

// 豞 URL encoding
https://unicodefinder.com/search.php?query=%E8%B1%9E

Encodings

MD5:

274277b0b2f9fc4e88299c1c0262f33c

SHA1:

8e210d04b741bd78be1b9e41f640e9d84e4ea841

Base64:

6LGe