Unicode Finder

"敘" U+6558(CJK UNIFIED IDEOGRAPH-6558)

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

Programming

C
\u6558
JavaScript
\u6558
Java
\u6558
Json
\u6558
Python
\u6558
Perl
\x{6558}
PHP
\x{6558}
Ruby
\u{6558}
Rust
\u{6558}
Go
\u6558

Web

CSS
\006558
HtmlDecimal
敘
HtmlHexadecimal
敘
Url
%E6%95%98

Code

MD5
ddf4e9f4d1c2443b7d0b95cd0e554dbb
Sha1
772c4ba20e9441a36ad794e4d2809050f0fbf106
Base64
5pWY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6558';
console.log(char);  // Output: 敘

Java:

char c = '\u6558';
System.out.println(c);  // Output: 敘

JSON:

{"text": "\u6558"}  // Value: 敘

Python:

char = '\u6558'
print(char)  # Output: 敘

Perl:

my $char = "\x{6558}";
print $char;  # Output: 敘

PHP:

$char = "\x{6558}";
echo $char;  // Output: 敘

Ruby:

char = "\u{6558}"
puts char  # Output: 敘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006558";  /* Display: 敘 */
}

HTML Decimal:

<p>HTML decimal: &#25944;</p>  <!-- Display: 敘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6558;</p>  <!-- Display: 敘 -->

URL Encoding:

// 敘 URL encoding
https://unicodefinder.com/search.php?query=%E6%95%98

Encodings

MD5:

ddf4e9f4d1c2443b7d0b95cd0e554dbb

SHA1:

772c4ba20e9441a36ad794e4d2809050f0fbf106

Base64:

5pWY