Unicode Finder

"摄" U+6444(CJK UNIFIED IDEOGRAPH-6444)

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

Programming

C
\u6444
JavaScript
\u6444
Java
\u6444
Json
\u6444
Python
\u6444
Perl
\x{6444}
PHP
\x{6444}
Ruby
\u{6444}
Rust
\u{6444}
Go
\u6444

Web

CSS
\006444
HtmlDecimal
摄
HtmlHexadecimal
摄
Url
%E6%91%84

Code

MD5
d5f3a73416eaa9499bb65cee89a994dc
Sha1
6863c4d873a890fda735e5e1372211bb8a83af0f
Base64
5pGE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6444';
console.log(char);  // Output: 摄

Java:

char c = '\u6444';
System.out.println(c);  // Output: 摄

JSON:

{"text": "\u6444"}  // Value: 摄

Python:

char = '\u6444'
print(char)  # Output: 摄

Perl:

my $char = "\x{6444}";
print $char;  # Output: 摄

PHP:

$char = "\x{6444}";
echo $char;  // Output: 摄

Ruby:

char = "\u{6444}"
puts char  # Output: 摄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006444";  /* Display: 摄 */
}

HTML Decimal:

<p>HTML decimal: &#25668;</p>  <!-- Display: 摄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6444;</p>  <!-- Display: 摄 -->

URL Encoding:

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

Encodings

MD5:

d5f3a73416eaa9499bb65cee89a994dc

SHA1:

6863c4d873a890fda735e5e1372211bb8a83af0f

Base64:

5pGE