Unicode Finder

"慕" U+6155(CJK UNIFIED IDEOGRAPH-6155)

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

Programming

C
\u6155
JavaScript
\u6155
Java
\u6155
Json
\u6155
Python
\u6155
Perl
\x{6155}
PHP
\x{6155}
Ruby
\u{6155}
Rust
\u{6155}
Go
\u6155

Web

CSS
\006155
HtmlDecimal
慕
HtmlHexadecimal
慕
Url
%E6%85%95

Code

MD5
ab4f3c36caeca93cbe2b84e168e2c72a
Sha1
fc3a5e0ce0c3e4ca2c612763ecb45d0a399b98db
Base64
5oWV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6155';
console.log(char);  // Output: 慕

Java:

char c = '\u6155';
System.out.println(c);  // Output: 慕

JSON:

{"text": "\u6155"}  // Value: 慕

Python:

char = '\u6155'
print(char)  # Output: 慕

Perl:

my $char = "\x{6155}";
print $char;  # Output: 慕

PHP:

$char = "\x{6155}";
echo $char;  // Output: 慕

Ruby:

char = "\u{6155}"
puts char  # Output: 慕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006155";  /* Display: 慕 */
}

HTML Decimal:

<p>HTML decimal: &#24917;</p>  <!-- Display: 慕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6155;</p>  <!-- Display: 慕 -->

URL Encoding:

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

Encodings

MD5:

ab4f3c36caeca93cbe2b84e168e2c72a

SHA1:

fc3a5e0ce0c3e4ca2c612763ecb45d0a399b98db

Base64:

5oWV