Unicode Finder

"岌" U+5C8C(CJK UNIFIED IDEOGRAPH-5C8C)

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

Programming

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

Web

CSS
\005C8C
HtmlDecimal
岌
HtmlHexadecimal
岌
Url
%E5%B2%8C

Code

MD5
9f51b04899a39049148eb46be1fe5c5f
Sha1
5f90948eeb3dcfd83d8203acca16c3c6511f066a
Base64
5bKM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C8C';
console.log(char);  // Output: 岌

Java:

char c = '\u5C8C';
System.out.println(c);  // Output: 岌

JSON:

{"text": "\u5C8C"}  // Value: 岌

Python:

char = '\u5C8C'
print(char)  # Output: 岌

Perl:

my $char = "\x{5C8C}";
print $char;  # Output: 岌

PHP:

$char = "\x{5C8C}";
echo $char;  // Output: 岌

Ruby:

char = "\u{5C8C}"
puts char  # Output: 岌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23692;</p>  <!-- Display: 岌 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C8C;</p>  <!-- Display: 岌 -->

URL Encoding:

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

Encodings

MD5:

9f51b04899a39049148eb46be1fe5c5f

SHA1:

5f90948eeb3dcfd83d8203acca16c3c6511f066a

Base64:

5bKM