Unicode Finder

"坍" U+574D(CJK UNIFIED IDEOGRAPH-574D)

U+574D
Nazwa Bloku
CJK Unified Ideographs
Nazwa
CJK UNIFIED IDEOGRAPH-574D

Programming

C
\u574D
JavaScript
\u574D
Java
\u574D
Json
\u574D
Python
\u574D
Perl
\x{574D}
PHP
\x{574D}
Ruby
\u{574D}
Rust
\u{574D}
Go
\u574D

Web

CSS
\00574D
HtmlDecimal
坍
HtmlHexadecimal
坍
Url
%E5%9D%8D

Code

MD5
472a990f098a434f675ed29383df0032
Sha1
323f2b6087a47248ea19e973dc3413cf59d958b2
Base64
5Z2N

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u574D';
console.log(char);  // Output: 坍

Java:

char c = '\u574D';
System.out.println(c);  // Output: 坍

JSON:

{"text": "\u574D"}  // Value: 坍

Python:

char = '\u574D'
print(char)  # Output: 坍

Perl:

my $char = "\x{574D}";
print $char;  # Output: 坍

PHP:

$char = "\x{574D}";
echo $char;  // Output: 坍

Ruby:

char = "\u{574D}"
puts char  # Output: 坍

Rust:

let c = '\u{574D}';
println!("{}", c);  // Output: 坍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00574D";  /* Display: 坍 */
}

HTML Decimal:

<p>HTML decimal: &#22349;</p>  <!-- Display: 坍 -->

HTML Hexadecimal:

<p>HTML hex: &#x574D;</p>  <!-- Display: 坍 -->

URL Encoding:

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

Encodings

MD5:

472a990f098a434f675ed29383df0032

SHA1:

323f2b6087a47248ea19e973dc3413cf59d958b2

Base64:

5Z2N