Unicode Finder

"幾" U+5E7E(CJK UNIFIED IDEOGRAPH-5E7E)

U+5E7E
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5E7E

Programming

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

Web

CSS
\005E7E
HtmlDecimal
幾
HtmlHexadecimal
幾
Url
%E5%B9%BE

Code

MD5
16ec9b7259881d0b76be01acaad9a624
Sha1
6030f0b0e4bc3473d29b2f8a2ce92e4bc82fb7db
Base64
5bm+

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5E7E';
console.log(char);  // Output: 幾

Java:

char c = '\u5E7E';
System.out.println(c);  // Output: 幾

JSON:

{"text": "\u5E7E"}  // Value: 幾

Python:

char = '\u5E7E'
print(char)  # Output: 幾

Perl:

my $char = "\x{5E7E}";
print $char;  # Output: 幾

PHP:

$char = "\x{5E7E}";
echo $char;  // Output: 幾

Ruby:

char = "\u{5E7E}"
puts char  # Output: 幾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24190;</p>  <!-- Display: 幾 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E7E;</p>  <!-- Display: 幾 -->

URL Encoding:

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

Encodings

MD5:

16ec9b7259881d0b76be01acaad9a624

SHA1:

6030f0b0e4bc3473d29b2f8a2ce92e4bc82fb7db

Base64:

5bm+