Unicode Finder

"巌" U+5DCC(CJK UNIFIED IDEOGRAPH-5DCC)

U+5DCC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5DCC

Programming

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

Web

CSS
\005DCC
HtmlDecimal
巌
HtmlHexadecimal
巌
Url
%E5%B7%8C

Code

MD5
b486775190fc84820a8670addc4faa46
Sha1
bd73d144462bc565b5cd812c10f0eaee10c6c5bf
Base64
5beM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5DCC';
console.log(char);  // Output: 巌

Java:

char c = '\u5DCC';
System.out.println(c);  // Output: 巌

JSON:

{"text": "\u5DCC"}  // Value: 巌

Python:

char = '\u5DCC'
print(char)  # Output: 巌

Perl:

my $char = "\x{5DCC}";
print $char;  # Output: 巌

PHP:

$char = "\x{5DCC}";
echo $char;  // Output: 巌

Ruby:

char = "\u{5DCC}"
puts char  # Output: 巌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24012;</p>  <!-- Display: 巌 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DCC;</p>  <!-- Display: 巌 -->

URL Encoding:

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

Encodings

MD5:

b486775190fc84820a8670addc4faa46

SHA1:

bd73d144462bc565b5cd812c10f0eaee10c6c5bf

Base64:

5beM