Unicode Finder

"土" U+571F(CJK UNIFIED IDEOGRAPH-571F)

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

Programming

C
\u571F
JavaScript
\u571F
Java
\u571F
Json
\u571F
Python
\u571F
Perl
\x{571F}
PHP
\x{571F}
Ruby
\u{571F}
Rust
\u{571F}
Go
\u571F

Web

CSS
\00571F
HtmlDecimal
土
HtmlHexadecimal
土
Url
%E5%9C%9F

Code

MD5
06da773f581671ce879fa4a68aa916e2
Sha1
90fbc9b1ac2e78e1f6dd82e82edb62588aff8c7a
Base64
5Zyf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u571F';
console.log(char);  // Output: 土

Java:

char c = '\u571F';
System.out.println(c);  // Output: 土

JSON:

{"text": "\u571F"}  // Value: 土

Python:

char = '\u571F'
print(char)  # Output: 土

Perl:

my $char = "\x{571F}";
print $char;  # Output: 土

PHP:

$char = "\x{571F}";
echo $char;  // Output: 土

Ruby:

char = "\u{571F}"
puts char  # Output: 土

Rust:

let c = '\u{571F}';
println!("{}", c);  // Output: 土

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00571F";  /* Display: 土 */
}

HTML Decimal:

<p>HTML decimal: &#22303;</p>  <!-- Display: 土 -->

HTML Hexadecimal:

<p>HTML hex: &#x571F;</p>  <!-- Display: 土 -->

URL Encoding:

// 土 URL encoding
https://unicodefinder.com/search.php?query=%E5%9C%9F

Encodings

MD5:

06da773f581671ce879fa4a68aa916e2

SHA1:

90fbc9b1ac2e78e1f6dd82e82edb62588aff8c7a

Base64:

5Zyf