Unicode Finder

"坄" U+5744(CJK UNIFIED IDEOGRAPH-5744)

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

Programming

C
\u5744
JavaScript
\u5744
Java
\u5744
Json
\u5744
Python
\u5744
Perl
\x{5744}
PHP
\x{5744}
Ruby
\u{5744}
Rust
\u{5744}
Go
\u5744

Web

CSS
\005744
HtmlDecimal
坄
HtmlHexadecimal
坄
Url
%E5%9D%84

Code

MD5
b95ec1afa840b9f7e12256260b8dcbfc
Sha1
5378bce318ea8c38c3c9a2a782da5fe2ea8db8c1
Base64
5Z2E

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5744';
console.log(char);  // Output: 坄

Java:

char c = '\u5744';
System.out.println(c);  // Output: 坄

JSON:

{"text": "\u5744"}  // Value: 坄

Python:

char = '\u5744'
print(char)  # Output: 坄

Perl:

my $char = "\x{5744}";
print $char;  # Output: 坄

PHP:

$char = "\x{5744}";
echo $char;  // Output: 坄

Ruby:

char = "\u{5744}"
puts char  # Output: 坄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005744";  /* Display: 坄 */
}

HTML Decimal:

<p>HTML decimal: &#22340;</p>  <!-- Display: 坄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5744;</p>  <!-- Display: 坄 -->

URL Encoding:

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

Encodings

MD5:

b95ec1afa840b9f7e12256260b8dcbfc

SHA1:

5378bce318ea8c38c3c9a2a782da5fe2ea8db8c1

Base64:

5Z2E