Unicode Finder

"山" U+5C71(CJK UNIFIED IDEOGRAPH-5C71)

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

Programming

C
\u5C71
JavaScript
\u5C71
Java
\u5C71
Json
\u5C71
Python
\u5C71
Perl
\x{5C71}
PHP
\x{5C71}
Ruby
\u{5C71}
Rust
\u{5C71}
Go
\u5C71

Web

CSS
\005C71
HtmlDecimal
山
HtmlHexadecimal
山
Url
%E5%B1%B1

Code

MD5
86fa9c82d812904e41897b4d4b2a1c8f
Sha1
0e248e5603d3e908214e506d4c5fa3700b2ef7ff
Base64
5bGx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C71';
console.log(char);  // Output: 山

Java:

char c = '\u5C71';
System.out.println(c);  // Output: 山

JSON:

{"text": "\u5C71"}  // Value: 山

Python:

char = '\u5C71'
print(char)  # Output: 山

Perl:

my $char = "\x{5C71}";
print $char;  # Output: 山

PHP:

$char = "\x{5C71}";
echo $char;  // Output: 山

Ruby:

char = "\u{5C71}"
puts char  # Output: 山

Rust:

let c = '\u{5C71}';
println!("{}", c);  // Output: 山

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005C71";  /* Display: 山 */
}

HTML Decimal:

<p>HTML decimal: &#23665;</p>  <!-- Display: 山 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C71;</p>  <!-- Display: 山 -->

URL Encoding:

// 山 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%B1

Encodings

MD5:

86fa9c82d812904e41897b4d4b2a1c8f

SHA1:

0e248e5603d3e908214e506d4c5fa3700b2ef7ff

Base64:

5bGx