Unicode Finder

"慗" U+6157(CJK UNIFIED IDEOGRAPH-6157)

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

Programming

C
\u6157
JavaScript
\u6157
Java
\u6157
Json
\u6157
Python
\u6157
Perl
\x{6157}
PHP
\x{6157}
Ruby
\u{6157}
Rust
\u{6157}
Go
\u6157

Web

CSS
\006157
HtmlDecimal
慗
HtmlHexadecimal
慗
Url
%E6%85%97

Code

MD5
a35d24750f2bd15bea27e5b7adb498b5
Sha1
9c7702277df8c6dd861dffb9a5663971b9b66122
Base64
5oWX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6157';
console.log(char);  // Output: 慗

Java:

char c = '\u6157';
System.out.println(c);  // Output: 慗

JSON:

{"text": "\u6157"}  // Value: 慗

Python:

char = '\u6157'
print(char)  # Output: 慗

Perl:

my $char = "\x{6157}";
print $char;  # Output: 慗

PHP:

$char = "\x{6157}";
echo $char;  // Output: 慗

Ruby:

char = "\u{6157}"
puts char  # Output: 慗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006157";  /* Display: 慗 */
}

HTML Decimal:

<p>HTML decimal: &#24919;</p>  <!-- Display: 慗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6157;</p>  <!-- Display: 慗 -->

URL Encoding:

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

Encodings

MD5:

a35d24750f2bd15bea27e5b7adb498b5

SHA1:

9c7702277df8c6dd861dffb9a5663971b9b66122

Base64:

5oWX