Unicode Finder

"慇" U+6147(CJK UNIFIED IDEOGRAPH-6147)

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

Programming

C
\u6147
JavaScript
\u6147
Java
\u6147
Json
\u6147
Python
\u6147
Perl
\x{6147}
PHP
\x{6147}
Ruby
\u{6147}
Rust
\u{6147}
Go
\u6147

Web

CSS
\006147
HtmlDecimal
慇
HtmlHexadecimal
慇
Url
%E6%85%87

Code

MD5
be10012471fa03fd9eb210be5b0f2a76
Sha1
6ac6884a18ca5fd7908b0241cd538fc5cf0e7f9a
Base64
5oWH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6147';
console.log(char);  // Output: 慇

Java:

char c = '\u6147';
System.out.println(c);  // Output: 慇

JSON:

{"text": "\u6147"}  // Value: 慇

Python:

char = '\u6147'
print(char)  # Output: 慇

Perl:

my $char = "\x{6147}";
print $char;  # Output: 慇

PHP:

$char = "\x{6147}";
echo $char;  // Output: 慇

Ruby:

char = "\u{6147}"
puts char  # Output: 慇

Rust:

let c = '\u{6147}';
println!("{}", c);  // Output: 慇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006147";  /* Display: 慇 */
}

HTML Decimal:

<p>HTML decimal: &#24903;</p>  <!-- Display: 慇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6147;</p>  <!-- Display: 慇 -->

URL Encoding:

// 慇 URL encoding
https://unicodefinder.com/search.php?query=%E6%85%87

Encodings

MD5:

be10012471fa03fd9eb210be5b0f2a76

SHA1:

6ac6884a18ca5fd7908b0241cd538fc5cf0e7f9a

Base64:

5oWH