Unicode Finder

"危" U+5371(CJK UNIFIED IDEOGRAPH-5371)

U+5371
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5371

Programming

C
\u5371
JavaScript
\u5371
Java
\u5371
Json
\u5371
Python
\u5371
Perl
\x{5371}
PHP
\x{5371}
Ruby
\u{5371}
Rust
\u{5371}
Go
\u5371

Web

CSS
\005371
HtmlDecimal
危
HtmlHexadecimal
危
Url
%E5%8D%B1

Code

MD5
9e9607914e104805494ee782ef276c98
Sha1
2752db00d3b575e79e660d738bf6a7ac59862981
Base64
5Y2x

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5371';
console.log(char);  // Output: 危

Java:

char c = '\u5371';
System.out.println(c);  // Output: 危

JSON:

{"text": "\u5371"}  // Value: 危

Python:

char = '\u5371'
print(char)  # Output: 危

Perl:

my $char = "\x{5371}";
print $char;  # Output: 危

PHP:

$char = "\x{5371}";
echo $char;  // Output: 危

Ruby:

char = "\u{5371}"
puts char  # Output: 危

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005371";  /* Display: 危 */
}

HTML Decimal:

<p>HTML decimal: &#21361;</p>  <!-- Display: 危 -->

HTML Hexadecimal:

<p>HTML hex: &#x5371;</p>  <!-- Display: 危 -->

URL Encoding:

// 危 URL encoding
https://unicodefinder.com/search.php?query=%E5%8D%B1

Encodings

MD5:

9e9607914e104805494ee782ef276c98

SHA1:

2752db00d3b575e79e660d738bf6a7ac59862981

Base64:

5Y2x