Unicode Finder

"幸" U+5E78(CJK UNIFIED IDEOGRAPH-5E78)

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

Programming

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

Web

CSS
\005E78
HtmlDecimal
幸
HtmlHexadecimal
幸
Url
%E5%B9%B8

Code

MD5
41abbd4b275508b5686f410be2281fc2
Sha1
45e4bc999326d64d2537833f611dc3715859d2f5
Base64
5bm4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5E78';
console.log(char);  // Output: 幸

Java:

char c = '\u5E78';
System.out.println(c);  // Output: 幸

JSON:

{"text": "\u5E78"}  // Value: 幸

Python:

char = '\u5E78'
print(char)  # Output: 幸

Perl:

my $char = "\x{5E78}";
print $char;  # Output: 幸

PHP:

$char = "\x{5E78}";
echo $char;  // Output: 幸

Ruby:

char = "\u{5E78}"
puts char  # Output: 幸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24184;</p>  <!-- Display: 幸 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E78;</p>  <!-- Display: 幸 -->

URL Encoding:

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

Encodings

MD5:

41abbd4b275508b5686f410be2281fc2

SHA1:

45e4bc999326d64d2537833f611dc3715859d2f5

Base64:

5bm4