Unicode Finder

"坖" U+5756(CJK UNIFIED IDEOGRAPH-5756)

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

Programming

C
\u5756
JavaScript
\u5756
Java
\u5756
Json
\u5756
Python
\u5756
Perl
\x{5756}
PHP
\x{5756}
Ruby
\u{5756}
Rust
\u{5756}
Go
\u5756

Web

CSS
\005756
HtmlDecimal
坖
HtmlHexadecimal
坖
Url
%E5%9D%96

Code

MD5
5048725740e0ba10a859385be0c70679
Sha1
faeca7d2931064e6ebe43f2527465948c0e10c80
Base64
5Z2W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5756';
console.log(char);  // Output: 坖

Java:

char c = '\u5756';
System.out.println(c);  // Output: 坖

JSON:

{"text": "\u5756"}  // Value: 坖

Python:

char = '\u5756'
print(char)  # Output: 坖

Perl:

my $char = "\x{5756}";
print $char;  # Output: 坖

PHP:

$char = "\x{5756}";
echo $char;  // Output: 坖

Ruby:

char = "\u{5756}"
puts char  # Output: 坖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005756";  /* Display: 坖 */
}

HTML Decimal:

<p>HTML decimal: &#22358;</p>  <!-- Display: 坖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5756;</p>  <!-- Display: 坖 -->

URL Encoding:

// 坖 URL encoding
https://unicodefinder.com/search.php?query=%E5%9D%96

Encodings

MD5:

5048725740e0ba10a859385be0c70679

SHA1:

faeca7d2931064e6ebe43f2527465948c0e10c80

Base64:

5Z2W