Unicode Finder

"巖" U+5DD6(CJK UNIFIED IDEOGRAPH-5DD6)

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

Programming

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

Web

CSS
\005DD6
HtmlDecimal
巖
HtmlHexadecimal
巖
Url
%E5%B7%96

Code

MD5
ce2690dfa92cde4c7aecfb734792b2d1
Sha1
da1bf280c94ba64e81902d8912e53e274c8f077c
Base64
5beW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5DD6';
console.log(char);  // Output: 巖

Java:

char c = '\u5DD6';
System.out.println(c);  // Output: 巖

JSON:

{"text": "\u5DD6"}  // Value: 巖

Python:

char = '\u5DD6'
print(char)  # Output: 巖

Perl:

my $char = "\x{5DD6}";
print $char;  # Output: 巖

PHP:

$char = "\x{5DD6}";
echo $char;  // Output: 巖

Ruby:

char = "\u{5DD6}"
puts char  # Output: 巖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24022;</p>  <!-- Display: 巖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DD6;</p>  <!-- Display: 巖 -->

URL Encoding:

// 巖 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%96

Encodings

MD5:

ce2690dfa92cde4c7aecfb734792b2d1

SHA1:

da1bf280c94ba64e81902d8912e53e274c8f077c

Base64:

5beW