Unicode Finder

"岅" U+5C85(CJK UNIFIED IDEOGRAPH-5C85)

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

Programming

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

Web

CSS
\005C85
HtmlDecimal
岅
HtmlHexadecimal
岅
Url
%E5%B2%85

Code

MD5
f5b6301af04cef9a805896aad602f6f5
Sha1
34136aef16dce49bb53ee16cf624494bbca328a7
Base64
5bKF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C85';
console.log(char);  // Output: 岅

Java:

char c = '\u5C85';
System.out.println(c);  // Output: 岅

JSON:

{"text": "\u5C85"}  // Value: 岅

Python:

char = '\u5C85'
print(char)  # Output: 岅

Perl:

my $char = "\x{5C85}";
print $char;  # Output: 岅

PHP:

$char = "\x{5C85}";
echo $char;  // Output: 岅

Ruby:

char = "\u{5C85}"
puts char  # Output: 岅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23685;</p>  <!-- Display: 岅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C85;</p>  <!-- Display: 岅 -->

URL Encoding:

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

Encodings

MD5:

f5b6301af04cef9a805896aad602f6f5

SHA1:

34136aef16dce49bb53ee16cf624494bbca328a7

Base64:

5bKF