Unicode Finder

"慠" U+6160(CJK UNIFIED IDEOGRAPH-6160)

U+6160
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6160

Programming

C
\u6160
JavaScript
\u6160
Java
\u6160
Json
\u6160
Python
\u6160
Perl
\x{6160}
PHP
\x{6160}
Ruby
\u{6160}
Rust
\u{6160}
Go
\u6160

Web

CSS
\006160
HtmlDecimal
慠
HtmlHexadecimal
慠
Url
%E6%85%A0

Code

MD5
08aec87a9b7655a91bf5c4537e702b26
Sha1
cd350f6d1edd1c98a9dc955e633ab8d74bb1acb8
Base64
5oWg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6160';
console.log(char);  // Output: 慠

Java:

char c = '\u6160';
System.out.println(c);  // Output: 慠

JSON:

{"text": "\u6160"}  // Value: 慠

Python:

char = '\u6160'
print(char)  # Output: 慠

Perl:

my $char = "\x{6160}";
print $char;  # Output: 慠

PHP:

$char = "\x{6160}";
echo $char;  // Output: 慠

Ruby:

char = "\u{6160}"
puts char  # Output: 慠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006160";  /* Display: 慠 */
}

HTML Decimal:

<p>HTML decimal: &#24928;</p>  <!-- Display: 慠 -->

HTML Hexadecimal:

<p>HTML hex: &#x6160;</p>  <!-- Display: 慠 -->

URL Encoding:

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

Encodings

MD5:

08aec87a9b7655a91bf5c4537e702b26

SHA1:

cd350f6d1edd1c98a9dc955e633ab8d74bb1acb8

Base64:

5oWg