Unicode Finder

"幦" U+5E66(CJK UNIFIED IDEOGRAPH-5E66)

U+5E66
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5E66

Programming

C
\u5E66
JavaScript
\u5E66
Java
\u5E66
Json
\u5E66
Python
\u5E66
Perl
\x{5E66}
PHP
\x{5E66}
Ruby
\u{5E66}
Rust
\u{5E66}
Go
\u5E66

Web

CSS
\005E66
HtmlDecimal
幦
HtmlHexadecimal
幦
Url
%E5%B9%A6

Code

MD5
c9e465e18a79e7b7d55829cb3ec209cb
Sha1
08b6552edac6212666a1c5d70364cddb3d9ea682
Base64
5bmm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E66';
console.log(char);  // Output: 幦

Java:

char c = '\u5E66';
System.out.println(c);  // Output: 幦

JSON:

{"text": "\u5E66"}  // Value: 幦

Python:

char = '\u5E66'
print(char)  # Output: 幦

Perl:

my $char = "\x{5E66}";
print $char;  # Output: 幦

PHP:

$char = "\x{5E66}";
echo $char;  // Output: 幦

Ruby:

char = "\u{5E66}"
puts char  # Output: 幦

Rust:

let c = '\u{5E66}';
println!("{}", c);  // Output: 幦

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005E66";  /* Display: 幦 */
}

HTML Decimal:

<p>HTML decimal: &#24166;</p>  <!-- Display: 幦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E66;</p>  <!-- Display: 幦 -->

URL Encoding:

// 幦 URL encoding
https://unicodefinder.com/search.php?query=%E5%B9%A6

Encodings

MD5:

c9e465e18a79e7b7d55829cb3ec209cb

SHA1:

08b6552edac6212666a1c5d70364cddb3d9ea682

Base64:

5bmm