Unicode Finder

"态" U+6001(CJK UNIFIED IDEOGRAPH-6001)

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

Programming

C
\u6001
JavaScript
\u6001
Java
\u6001
Json
\u6001
Python
\u6001
Perl
\x{6001}
PHP
\x{6001}
Ruby
\u{6001}
Rust
\u{6001}
Go
\u6001

Web

CSS
\006001
HtmlDecimal
态
HtmlHexadecimal
态
Url
%E6%80%81

Code

MD5
bdfc25c1e3372b944faa845ad1162ec9
Sha1
fb90ae94e73f7d6795263221d8d47abee47db62d
Base64
5oCB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6001';
console.log(char);  // Output: 态

Java:

char c = '\u6001';
System.out.println(c);  // Output: 态

JSON:

{"text": "\u6001"}  // Value: 态

Python:

char = '\u6001'
print(char)  # Output: 态

Perl:

my $char = "\x{6001}";
print $char;  # Output: 态

PHP:

$char = "\x{6001}";
echo $char;  // Output: 态

Ruby:

char = "\u{6001}"
puts char  # Output: 态

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006001";  /* Display: 态 */
}

HTML Decimal:

<p>HTML decimal: &#24577;</p>  <!-- Display: 态 -->

HTML Hexadecimal:

<p>HTML hex: &#x6001;</p>  <!-- Display: 态 -->

URL Encoding:

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

Encodings

MD5:

bdfc25c1e3372b944faa845ad1162ec9

SHA1:

fb90ae94e73f7d6795263221d8d47abee47db62d

Base64:

5oCB