Unicode Finder

"噅" U+5645(CJK UNIFIED IDEOGRAPH-5645)

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

Programming

C
\u5645
JavaScript
\u5645
Java
\u5645
Json
\u5645
Python
\u5645
Perl
\x{5645}
PHP
\x{5645}
Ruby
\u{5645}
Rust
\u{5645}
Go
\u5645

Web

CSS
\005645
HtmlDecimal
噅
HtmlHexadecimal
噅
Url
%E5%99%85

Code

MD5
f0c7d3b14212ab2db2512cc81f53ff11
Sha1
04d3f1adba738c41f14b75f7265c0a549c5ca6b5
Base64
5ZmF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5645';
console.log(char);  // Output: 噅

Java:

char c = '\u5645';
System.out.println(c);  // Output: 噅

JSON:

{"text": "\u5645"}  // Value: 噅

Python:

char = '\u5645'
print(char)  # Output: 噅

Perl:

my $char = "\x{5645}";
print $char;  # Output: 噅

PHP:

$char = "\x{5645}";
echo $char;  // Output: 噅

Ruby:

char = "\u{5645}"
puts char  # Output: 噅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005645";  /* Display: 噅 */
}

HTML Decimal:

<p>HTML decimal: &#22085;</p>  <!-- Display: 噅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5645;</p>  <!-- Display: 噅 -->

URL Encoding:

// 噅 URL encoding
https://unicodefinder.com/search.php?query=%E5%99%85

Encodings

MD5:

f0c7d3b14212ab2db2512cc81f53ff11

SHA1:

04d3f1adba738c41f14b75f7265c0a549c5ca6b5

Base64:

5ZmF