Unicode Finder

"幽" U+5E7D(CJK UNIFIED IDEOGRAPH-5E7D)

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

Programming

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

Web

CSS
\005E7D
HtmlDecimal
幽
HtmlHexadecimal
幽
Url
%E5%B9%BD

Code

MD5
2e8fba40af03e4a0caf354ffe99bac88
Sha1
2078defa75924712634d45bed6205b871aae9259
Base64
5bm9

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5E7D';
console.log(char);  // Output: 幽

Java:

char c = '\u5E7D';
System.out.println(c);  // Output: 幽

JSON:

{"text": "\u5E7D"}  // Value: 幽

Python:

char = '\u5E7D'
print(char)  # Output: 幽

Perl:

my $char = "\x{5E7D}";
print $char;  # Output: 幽

PHP:

$char = "\x{5E7D}";
echo $char;  // Output: 幽

Ruby:

char = "\u{5E7D}"
puts char  # Output: 幽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24189;</p>  <!-- Display: 幽 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E7D;</p>  <!-- Display: 幽 -->

URL Encoding:

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

Encodings

MD5:

2e8fba40af03e4a0caf354ffe99bac88

SHA1:

2078defa75924712634d45bed6205b871aae9259

Base64:

5bm9