Unicode Finder

"坴" U+5774(CJK UNIFIED IDEOGRAPH-5774)

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

Programming

C
\u5774
JavaScript
\u5774
Java
\u5774
Json
\u5774
Python
\u5774
Perl
\x{5774}
PHP
\x{5774}
Ruby
\u{5774}
Rust
\u{5774}
Go
\u5774

Web

CSS
\005774
HtmlDecimal
坴
HtmlHexadecimal
坴
Url
%E5%9D%B4

Code

MD5
7f2d85219a6bede905f7919e045ef8b0
Sha1
155b579c5f80e17dc712a74d278a9c0142e12810
Base64
5Z20

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5774';
console.log(char);  // Output: 坴

Java:

char c = '\u5774';
System.out.println(c);  // Output: 坴

JSON:

{"text": "\u5774"}  // Value: 坴

Python:

char = '\u5774'
print(char)  # Output: 坴

Perl:

my $char = "\x{5774}";
print $char;  # Output: 坴

PHP:

$char = "\x{5774}";
echo $char;  // Output: 坴

Ruby:

char = "\u{5774}"
puts char  # Output: 坴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005774";  /* Display: 坴 */
}

HTML Decimal:

<p>HTML decimal: &#22388;</p>  <!-- Display: 坴 -->

HTML Hexadecimal:

<p>HTML hex: &#x5774;</p>  <!-- Display: 坴 -->

URL Encoding:

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

Encodings

MD5:

7f2d85219a6bede905f7919e045ef8b0

SHA1:

155b579c5f80e17dc712a74d278a9c0142e12810

Base64:

5Z20