Unicode Finder

"慲" U+6172(CJK UNIFIED IDEOGRAPH-6172)

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

Programming

C
\u6172
JavaScript
\u6172
Java
\u6172
Json
\u6172
Python
\u6172
Perl
\x{6172}
PHP
\x{6172}
Ruby
\u{6172}
Rust
\u{6172}
Go
\u6172

Web

CSS
\006172
HtmlDecimal
慲
HtmlHexadecimal
慲
Url
%E6%85%B2

Code

MD5
53d6e7ba7bbd6c3f79098fcf7cb6eac2
Sha1
285af070cc85237ae1dcfe8611056b289b5b30c5
Base64
5oWy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6172';
console.log(char);  // Output: 慲

Java:

char c = '\u6172';
System.out.println(c);  // Output: 慲

JSON:

{"text": "\u6172"}  // Value: 慲

Python:

char = '\u6172'
print(char)  # Output: 慲

Perl:

my $char = "\x{6172}";
print $char;  # Output: 慲

PHP:

$char = "\x{6172}";
echo $char;  // Output: 慲

Ruby:

char = "\u{6172}"
puts char  # Output: 慲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006172";  /* Display: 慲 */
}

HTML Decimal:

<p>HTML decimal: &#24946;</p>  <!-- Display: 慲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6172;</p>  <!-- Display: 慲 -->

URL Encoding:

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

Encodings

MD5:

53d6e7ba7bbd6c3f79098fcf7cb6eac2

SHA1:

285af070cc85237ae1dcfe8611056b289b5b30c5

Base64:

5oWy