Unicode Finder

"阳" U+9633(CJK UNIFIED IDEOGRAPH-9633)

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

Programming

C
\u9633
JavaScript
\u9633
Java
\u9633
Json
\u9633
Python
\u9633
Perl
\x{9633}
PHP
\x{9633}
Ruby
\u{9633}
Rust
\u{9633}
Go
\u9633

Web

CSS
\009633
HtmlDecimal
阳
HtmlHexadecimal
阳
Url
%E9%98%B3

Code

MD5
5af5ff9eaf6b572e8255dbee6c563bef
Sha1
cde25c78b8465634408748d0b150a6f79dfe6944
Base64
6Ziz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9633';
console.log(char);  // Output: 阳

Java:

char c = '\u9633';
System.out.println(c);  // Output: 阳

JSON:

{"text": "\u9633"}  // Value: 阳

Python:

char = '\u9633'
print(char)  # Output: 阳

Perl:

my $char = "\x{9633}";
print $char;  # Output: 阳

PHP:

$char = "\x{9633}";
echo $char;  // Output: 阳

Ruby:

char = "\u{9633}"
puts char  # Output: 阳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009633";  /* Display: 阳 */
}

HTML Decimal:

<p>HTML decimal: &#38451;</p>  <!-- Display: 阳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9633;</p>  <!-- Display: 阳 -->

URL Encoding:

// 阳 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%B3

Encodings

MD5:

5af5ff9eaf6b572e8255dbee6c563bef

SHA1:

cde25c78b8465634408748d0b150a6f79dfe6944

Base64:

6Ziz