Unicode Finder

"愀" U+6100(CJK UNIFIED IDEOGRAPH-6100)

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

Programming

C
\u6100
JavaScript
\u6100
Java
\u6100
Json
\u6100
Python
\u6100
Perl
\x{6100}
PHP
\x{6100}
Ruby
\u{6100}
Rust
\u{6100}
Go
\u6100

Web

CSS
\006100
HtmlDecimal
愀
HtmlHexadecimal
愀
Url
%E6%84%80

Code

MD5
f15214fda0f16b6268acb9647f5c5679
Sha1
5b411d472a8e84a7f66cf436f6cccb04ef175c2c
Base64
5oSA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6100';
console.log(char);  // Output: 愀

Java:

char c = '\u6100';
System.out.println(c);  // Output: 愀

JSON:

{"text": "\u6100"}  // Value: 愀

Python:

char = '\u6100'
print(char)  # Output: 愀

Perl:

my $char = "\x{6100}";
print $char;  # Output: 愀

PHP:

$char = "\x{6100}";
echo $char;  // Output: 愀

Ruby:

char = "\u{6100}"
puts char  # Output: 愀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006100";  /* Display: 愀 */
}

HTML Decimal:

<p>HTML decimal: &#24832;</p>  <!-- Display: 愀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6100;</p>  <!-- Display: 愀 -->

URL Encoding:

// 愀 URL encoding
https://unicodefinder.com/search.php?query=%E6%84%80

Encodings

MD5:

f15214fda0f16b6268acb9647f5c5679

SHA1:

5b411d472a8e84a7f66cf436f6cccb04ef175c2c

Base64:

5oSA