Unicode Finder

"岏" U+5C8F(CJK UNIFIED IDEOGRAPH-5C8F)

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

Programming

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

Web

CSS
\005C8F
HtmlDecimal
岏
HtmlHexadecimal
岏
Url
%E5%B2%8F

Code

MD5
c192ebf1180947ddfdc8208614c2dbfb
Sha1
90ac3e5957bb81a499ecab6f26a1ffc10371594c
Base64
5bKP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C8F';
console.log(char);  // Output: 岏

Java:

char c = '\u5C8F';
System.out.println(c);  // Output: 岏

JSON:

{"text": "\u5C8F"}  // Value: 岏

Python:

char = '\u5C8F'
print(char)  # Output: 岏

Perl:

my $char = "\x{5C8F}";
print $char;  # Output: 岏

PHP:

$char = "\x{5C8F}";
echo $char;  // Output: 岏

Ruby:

char = "\u{5C8F}"
puts char  # Output: 岏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23695;</p>  <!-- Display: 岏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C8F;</p>  <!-- Display: 岏 -->

URL Encoding:

// 岏 URL encoding
https://unicodefinder.com/search.php?query=%E5%B2%8F

Encodings

MD5:

c192ebf1180947ddfdc8208614c2dbfb

SHA1:

90ac3e5957bb81a499ecab6f26a1ffc10371594c

Base64:

5bKP