Unicode Finder

"岇" U+5C87(CJK UNIFIED IDEOGRAPH-5C87)

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

Programming

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

Web

CSS
\005C87
HtmlDecimal
岇
HtmlHexadecimal
岇
Url
%E5%B2%87

Code

MD5
601c46e612fb3db6cdd50552f8fa400f
Sha1
1792564f996db936bc1e619b92908655d4e94224
Base64
5bKH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C87';
console.log(char);  // Output: 岇

Java:

char c = '\u5C87';
System.out.println(c);  // Output: 岇

JSON:

{"text": "\u5C87"}  // Value: 岇

Python:

char = '\u5C87'
print(char)  # Output: 岇

Perl:

my $char = "\x{5C87}";
print $char;  # Output: 岇

PHP:

$char = "\x{5C87}";
echo $char;  // Output: 岇

Ruby:

char = "\u{5C87}"
puts char  # Output: 岇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23687;</p>  <!-- Display: 岇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C87;</p>  <!-- Display: 岇 -->

URL Encoding:

// 岇 URL encoding
https://unicodefinder.com/search.php?query=%E5%B2%87

Encodings

MD5:

601c46e612fb3db6cdd50552f8fa400f

SHA1:

1792564f996db936bc1e619b92908655d4e94224

Base64:

5bKH