Unicode Finder

"摰" U+6470(CJK UNIFIED IDEOGRAPH-6470)

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

Programming

C
\u6470
JavaScript
\u6470
Java
\u6470
Json
\u6470
Python
\u6470
Perl
\x{6470}
PHP
\x{6470}
Ruby
\u{6470}
Rust
\u{6470}
Go
\u6470

Web

CSS
\006470
HtmlDecimal
摰
HtmlHexadecimal
摰
Url
%E6%91%B0

Code

MD5
03a662767e581a6cae9971d4911d45ee
Sha1
4a2182f633707fc63f78d94fe5a3e45ebd2715a1
Base64
5pGw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6470';
console.log(char);  // Output: 摰

Java:

char c = '\u6470';
System.out.println(c);  // Output: 摰

JSON:

{"text": "\u6470"}  // Value: 摰

Python:

char = '\u6470'
print(char)  # Output: 摰

Perl:

my $char = "\x{6470}";
print $char;  # Output: 摰

PHP:

$char = "\x{6470}";
echo $char;  // Output: 摰

Ruby:

char = "\u{6470}"
puts char  # Output: 摰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006470";  /* Display: 摰 */
}

HTML Decimal:

<p>HTML decimal: &#25712;</p>  <!-- Display: 摰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6470;</p>  <!-- Display: 摰 -->

URL Encoding:

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

Encodings

MD5:

03a662767e581a6cae9971d4911d45ee

SHA1:

4a2182f633707fc63f78d94fe5a3e45ebd2715a1

Base64:

5pGw