Unicode Finder

"掠" U+63A0(CJK UNIFIED IDEOGRAPH-63A0)

U+63A0
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-63A0

Programming

C
\u63A0
JavaScript
\u63A0
Java
\u63A0
Json
\u63A0
Python
\u63A0
Perl
\x{63A0}
PHP
\x{63A0}
Ruby
\u{63A0}
Rust
\u{63A0}
Go
\u63A0

Web

CSS
\0063A0
HtmlDecimal
掠
HtmlHexadecimal
掠
Url
%E6%8E%A0

Code

MD5
5c4f4923a63f25137f2e7eb5bc41d5ad
Sha1
d5b255b6d6d01df39d85b7743289994375e1124a
Base64
5o6g

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u63A0';
console.log(char);  // Output: 掠

Java:

char c = '\u63A0';
System.out.println(c);  // Output: 掠

JSON:

{"text": "\u63A0"}  // Value: 掠

Python:

char = '\u63A0'
print(char)  # Output: 掠

Perl:

my $char = "\x{63A0}";
print $char;  # Output: 掠

PHP:

$char = "\x{63A0}";
echo $char;  // Output: 掠

Ruby:

char = "\u{63A0}"
puts char  # Output: 掠

Rust:

let c = '\u{63A0}';
println!("{}", c);  // Output: 掠

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0063A0";  /* Display: 掠 */
}

HTML Decimal:

<p>HTML decimal: &#25504;</p>  <!-- Display: 掠 -->

HTML Hexadecimal:

<p>HTML hex: &#x63A0;</p>  <!-- Display: 掠 -->

URL Encoding:

// 掠 URL encoding
https://unicodefinder.com/search.php?query=%E6%8E%A0

Encodings

MD5:

5c4f4923a63f25137f2e7eb5bc41d5ad

SHA1:

d5b255b6d6d01df39d85b7743289994375e1124a

Base64:

5o6g