Unicode Finder

"摏" U+644F(CJK UNIFIED IDEOGRAPH-644F)

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

Programming

C
\u644F
JavaScript
\u644F
Java
\u644F
Json
\u644F
Python
\u644F
Perl
\x{644F}
PHP
\x{644F}
Ruby
\u{644F}
Rust
\u{644F}
Go
\u644F

Web

CSS
\00644F
HtmlDecimal
摏
HtmlHexadecimal
摏
Url
%E6%91%8F

Code

MD5
6b16afd781498aed806f017360ee0a28
Sha1
1be15778d98e1ff566859b30e242486a0db9f46f
Base64
5pGP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u644F';
console.log(char);  // Output: 摏

Java:

char c = '\u644F';
System.out.println(c);  // Output: 摏

JSON:

{"text": "\u644F"}  // Value: 摏

Python:

char = '\u644F'
print(char)  # Output: 摏

Perl:

my $char = "\x{644F}";
print $char;  # Output: 摏

PHP:

$char = "\x{644F}";
echo $char;  // Output: 摏

Ruby:

char = "\u{644F}"
puts char  # Output: 摏

Rust:

let c = '\u{644F}';
println!("{}", c);  // Output: 摏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00644F";  /* Display: 摏 */
}

HTML Decimal:

<p>HTML decimal: &#25679;</p>  <!-- Display: 摏 -->

HTML Hexadecimal:

<p>HTML hex: &#x644F;</p>  <!-- Display: 摏 -->

URL Encoding:

// 摏 URL encoding
https://unicodefinder.com/search.php?query=%E6%91%8F

Encodings

MD5:

6b16afd781498aed806f017360ee0a28

SHA1:

1be15778d98e1ff566859b30e242486a0db9f46f

Base64:

5pGP