Unicode Finder

"塌" U+584C(CJK UNIFIED IDEOGRAPH-584C)

U+584C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-584C

Programming

C
\u584C
JavaScript
\u584C
Java
\u584C
Json
\u584C
Python
\u584C
Perl
\x{584C}
PHP
\x{584C}
Ruby
\u{584C}
Rust
\u{584C}
Go
\u584C

Web

CSS
\00584C
HtmlDecimal
塌
HtmlHexadecimal
塌
Url
%E5%A1%8C

Code

MD5
0ff611f8f85160cbd5385bc2120fde55
Sha1
7b449e25bb4b7623428bc0d78f459b3221903da2
Base64
5aGM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u584C';
console.log(char);  // Output: 塌

Java:

char c = '\u584C';
System.out.println(c);  // Output: 塌

JSON:

{"text": "\u584C"}  // Value: 塌

Python:

char = '\u584C'
print(char)  # Output: 塌

Perl:

my $char = "\x{584C}";
print $char;  # Output: 塌

PHP:

$char = "\x{584C}";
echo $char;  // Output: 塌

Ruby:

char = "\u{584C}"
puts char  # Output: 塌

Rust:

let c = '\u{584C}';
println!("{}", c);  // Output: 塌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00584C";  /* Display: 塌 */
}

HTML Decimal:

<p>HTML decimal: &#22604;</p>  <!-- Display: 塌 -->

HTML Hexadecimal:

<p>HTML hex: &#x584C;</p>  <!-- Display: 塌 -->

URL Encoding:

// 塌 URL encoding
https://unicodefinder.com/search.php?query=%E5%A1%8C

Encodings

MD5:

0ff611f8f85160cbd5385bc2120fde55

SHA1:

7b449e25bb4b7623428bc0d78f459b3221903da2

Base64:

5aGM