Unicode Finder

"慢" U+6162(CJK UNIFIED IDEOGRAPH-6162)

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

Programming

C
\u6162
JavaScript
\u6162
Java
\u6162
Json
\u6162
Python
\u6162
Perl
\x{6162}
PHP
\x{6162}
Ruby
\u{6162}
Rust
\u{6162}
Go
\u6162

Web

CSS
\006162
HtmlDecimal
慢
HtmlHexadecimal
慢
Url
%E6%85%A2

Code

MD5
e0b665f23b529468fe8347ab235677fe
Sha1
9aadfb450091e59df1480b6f32ee247114a3b8bd
Base64
5oWi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6162';
console.log(char);  // Output: 慢

Java:

char c = '\u6162';
System.out.println(c);  // Output: 慢

JSON:

{"text": "\u6162"}  // Value: 慢

Python:

char = '\u6162'
print(char)  # Output: 慢

Perl:

my $char = "\x{6162}";
print $char;  # Output: 慢

PHP:

$char = "\x{6162}";
echo $char;  // Output: 慢

Ruby:

char = "\u{6162}"
puts char  # Output: 慢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006162";  /* Display: 慢 */
}

HTML Decimal:

<p>HTML decimal: &#24930;</p>  <!-- Display: 慢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6162;</p>  <!-- Display: 慢 -->

URL Encoding:

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

Encodings

MD5:

e0b665f23b529468fe8347ab235677fe

SHA1:

9aadfb450091e59df1480b6f32ee247114a3b8bd

Base64:

5oWi