Unicode Finder

"掬" U+63AC(CJK UNIFIED IDEOGRAPH-63AC)

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

Programming

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

Web

CSS
\0063AC
HtmlDecimal
掬
HtmlHexadecimal
掬
Url
%E6%8E%AC

Code

MD5
23fbb690277052ae98a574ee5fce97cd
Sha1
ff3d97bd8908faf04682711ec5a73a9e3874c9df
Base64
5o6s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u63AC';
console.log(char);  // Output: 掬

Java:

char c = '\u63AC';
System.out.println(c);  // Output: 掬

JSON:

{"text": "\u63AC"}  // Value: 掬

Python:

char = '\u63AC'
print(char)  # Output: 掬

Perl:

my $char = "\x{63AC}";
print $char;  # Output: 掬

PHP:

$char = "\x{63AC}";
echo $char;  // Output: 掬

Ruby:

char = "\u{63AC}"
puts char  # Output: 掬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25516;</p>  <!-- Display: 掬 -->

HTML Hexadecimal:

<p>HTML hex: &#x63AC;</p>  <!-- Display: 掬 -->

URL Encoding:

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

Encodings

MD5:

23fbb690277052ae98a574ee5fce97cd

SHA1:

ff3d97bd8908faf04682711ec5a73a9e3874c9df

Base64:

5o6s