Unicode Finder

"岆" U+5C86(CJK UNIFIED IDEOGRAPH-5C86)

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

Programming

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

Web

CSS
\005C86
HtmlDecimal
岆
HtmlHexadecimal
岆
Url
%E5%B2%86

Code

MD5
cdde93703091d96d4db4fd0579760d37
Sha1
9bb3c280f7e94a46cc47ea48224f68287ebb988c
Base64
5bKG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C86';
console.log(char);  // Output: 岆

Java:

char c = '\u5C86';
System.out.println(c);  // Output: 岆

JSON:

{"text": "\u5C86"}  // Value: 岆

Python:

char = '\u5C86'
print(char)  # Output: 岆

Perl:

my $char = "\x{5C86}";
print $char;  # Output: 岆

PHP:

$char = "\x{5C86}";
echo $char;  // Output: 岆

Ruby:

char = "\u{5C86}"
puts char  # Output: 岆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23686;</p>  <!-- Display: 岆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C86;</p>  <!-- Display: 岆 -->

URL Encoding:

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

Encodings

MD5:

cdde93703091d96d4db4fd0579760d37

SHA1:

9bb3c280f7e94a46cc47ea48224f68287ebb988c

Base64:

5bKG