Unicode Finder

"靘" U+9758(CJK UNIFIED IDEOGRAPH-9758)

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

Programming

C
\u9758
JavaScript
\u9758
Java
\u9758
Json
\u9758
Python
\u9758
Perl
\x{9758}
PHP
\x{9758}
Ruby
\u{9758}
Rust
\u{9758}
Go
\u9758

Web

CSS
\009758
HtmlDecimal
靘
HtmlHexadecimal
靘
Url
%E9%9D%98

Code

MD5
5a90ff37a617b143bb3d400184f47368
Sha1
7b3d5c00ef9c96c9fe24b86aaf9f72d115986c1a
Base64
6Z2Y

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9758';
console.log(char);  // Output: 靘

Java:

char c = '\u9758';
System.out.println(c);  // Output: 靘

JSON:

{"text": "\u9758"}  // Value: 靘

Python:

char = '\u9758'
print(char)  # Output: 靘

Perl:

my $char = "\x{9758}";
print $char;  # Output: 靘

PHP:

$char = "\x{9758}";
echo $char;  // Output: 靘

Ruby:

char = "\u{9758}"
puts char  # Output: 靘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009758";  /* Display: 靘 */
}

HTML Decimal:

<p>HTML decimal: &#38744;</p>  <!-- Display: 靘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9758;</p>  <!-- Display: 靘 -->

URL Encoding:

// 靘 URL encoding
https://unicodefinder.com/search.php?query=%E9%9D%98

Encodings

MD5:

5a90ff37a617b143bb3d400184f47368

SHA1:

7b3d5c00ef9c96c9fe24b86aaf9f72d115986c1a

Base64:

6Z2Y