Unicode Finder

"慉" U+6149(CJK UNIFIED IDEOGRAPH-6149)

U+6149
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6149

Programming

C
\u6149
JavaScript
\u6149
Java
\u6149
Json
\u6149
Python
\u6149
Perl
\x{6149}
PHP
\x{6149}
Ruby
\u{6149}
Rust
\u{6149}
Go
\u6149

Web

CSS
\006149
HtmlDecimal
慉
HtmlHexadecimal
慉
Url
%E6%85%89

Code

MD5
283de21397716c6fca35fc3a06d34503
Sha1
319c4d4b2dd776465765fec1fb0a585c9e50b976
Base64
5oWJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6149';
console.log(char);  // Output: 慉

Java:

char c = '\u6149';
System.out.println(c);  // Output: 慉

JSON:

{"text": "\u6149"}  // Value: 慉

Python:

char = '\u6149'
print(char)  # Output: 慉

Perl:

my $char = "\x{6149}";
print $char;  # Output: 慉

PHP:

$char = "\x{6149}";
echo $char;  // Output: 慉

Ruby:

char = "\u{6149}"
puts char  # Output: 慉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006149";  /* Display: 慉 */
}

HTML Decimal:

<p>HTML decimal: &#24905;</p>  <!-- Display: 慉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6149;</p>  <!-- Display: 慉 -->

URL Encoding:

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

Encodings

MD5:

283de21397716c6fca35fc3a06d34503

SHA1:

319c4d4b2dd776465765fec1fb0a585c9e50b976

Base64:

5oWJ