Unicode Finder

"霣" U+9723(CJK UNIFIED IDEOGRAPH-9723)

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

Programming

C
\u9723
JavaScript
\u9723
Java
\u9723
Json
\u9723
Python
\u9723
Perl
\x{9723}
PHP
\x{9723}
Ruby
\u{9723}
Rust
\u{9723}
Go
\u9723

Web

CSS
\009723
HtmlDecimal
霣
HtmlHexadecimal
霣
Url
%E9%9C%A3

Code

MD5
99c311dab679c7da916230b50ca3f80d
Sha1
ffaaab6274eae2ce6971a2eed21d6a5fdfae3557
Base64
6Zyj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9723';
console.log(char);  // Output: 霣

Java:

char c = '\u9723';
System.out.println(c);  // Output: 霣

JSON:

{"text": "\u9723"}  // Value: 霣

Python:

char = '\u9723'
print(char)  # Output: 霣

Perl:

my $char = "\x{9723}";
print $char;  # Output: 霣

PHP:

$char = "\x{9723}";
echo $char;  // Output: 霣

Ruby:

char = "\u{9723}"
puts char  # Output: 霣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009723";  /* Display: 霣 */
}

HTML Decimal:

<p>HTML decimal: &#38691;</p>  <!-- Display: 霣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9723;</p>  <!-- Display: 霣 -->

URL Encoding:

// 霣 URL encoding
https://unicodefinder.com/search.php?query=%E9%9C%A3

Encodings

MD5:

99c311dab679c7da916230b50ca3f80d

SHA1:

ffaaab6274eae2ce6971a2eed21d6a5fdfae3557

Base64:

6Zyj