Unicode Finder

"兇" U+5147(CJK UNIFIED IDEOGRAPH-5147)

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

Programming

C
\u5147
JavaScript
\u5147
Java
\u5147
Json
\u5147
Python
\u5147
Perl
\x{5147}
PHP
\x{5147}
Ruby
\u{5147}
Rust
\u{5147}
Go
\u5147

Web

CSS
\005147
HtmlDecimal
兇
HtmlHexadecimal
兇
Url
%E5%85%87

Code

MD5
98acf11d484329f15b08ec2a6e6c8066
Sha1
c91c452906f7a8c43727d81d8e4ebe13c7a884e2
Base64
5YWH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5147';
console.log(char);  // Output: 兇

Java:

char c = '\u5147';
System.out.println(c);  // Output: 兇

JSON:

{"text": "\u5147"}  // Value: 兇

Python:

char = '\u5147'
print(char)  # Output: 兇

Perl:

my $char = "\x{5147}";
print $char;  # Output: 兇

PHP:

$char = "\x{5147}";
echo $char;  // Output: 兇

Ruby:

char = "\u{5147}"
puts char  # Output: 兇

Rust:

let c = '\u{5147}';
println!("{}", c);  // Output: 兇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005147";  /* Display: 兇 */
}

HTML Decimal:

<p>HTML decimal: &#20807;</p>  <!-- Display: 兇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5147;</p>  <!-- Display: 兇 -->

URL Encoding:

// 兇 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%87

Encodings

MD5:

98acf11d484329f15b08ec2a6e6c8066

SHA1:

c91c452906f7a8c43727d81d8e4ebe13c7a884e2

Base64:

5YWH