Unicode Finder

"慰" U+6170(CJK UNIFIED IDEOGRAPH-6170)

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

Programming

C
\u6170
JavaScript
\u6170
Java
\u6170
Json
\u6170
Python
\u6170
Perl
\x{6170}
PHP
\x{6170}
Ruby
\u{6170}
Rust
\u{6170}
Go
\u6170

Web

CSS
\006170
HtmlDecimal
慰
HtmlHexadecimal
慰
Url
%E6%85%B0

Code

MD5
afe1b9c8116b8ecad36563533ec1ff9d
Sha1
045ebb11a1c47b7d9ecd33267b7a632f89297b98
Base64
5oWw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6170';
console.log(char);  // Output: 慰

Java:

char c = '\u6170';
System.out.println(c);  // Output: 慰

JSON:

{"text": "\u6170"}  // Value: 慰

Python:

char = '\u6170'
print(char)  # Output: 慰

Perl:

my $char = "\x{6170}";
print $char;  # Output: 慰

PHP:

$char = "\x{6170}";
echo $char;  // Output: 慰

Ruby:

char = "\u{6170}"
puts char  # Output: 慰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006170";  /* Display: 慰 */
}

HTML Decimal:

<p>HTML decimal: &#24944;</p>  <!-- Display: 慰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6170;</p>  <!-- Display: 慰 -->

URL Encoding:

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

Encodings

MD5:

afe1b9c8116b8ecad36563533ec1ff9d

SHA1:

045ebb11a1c47b7d9ecd33267b7a632f89297b98

Base64:

5oWw