Unicode Finder

"慥" U+6165(CJK UNIFIED IDEOGRAPH-6165)

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

Programming

C
\u6165
JavaScript
\u6165
Java
\u6165
Json
\u6165
Python
\u6165
Perl
\x{6165}
PHP
\x{6165}
Ruby
\u{6165}
Rust
\u{6165}
Go
\u6165

Web

CSS
\006165
HtmlDecimal
慥
HtmlHexadecimal
慥
Url
%E6%85%A5

Code

MD5
9f862f01c0de64437ee0a57852e3c580
Sha1
da57afae1b657aa1da2eb08e9d4bc22d37326dba
Base64
5oWl

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6165';
console.log(char);  // Output: 慥

Java:

char c = '\u6165';
System.out.println(c);  // Output: 慥

JSON:

{"text": "\u6165"}  // Value: 慥

Python:

char = '\u6165'
print(char)  # Output: 慥

Perl:

my $char = "\x{6165}";
print $char;  # Output: 慥

PHP:

$char = "\x{6165}";
echo $char;  // Output: 慥

Ruby:

char = "\u{6165}"
puts char  # Output: 慥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006165";  /* Display: 慥 */
}

HTML Decimal:

<p>HTML decimal: &#24933;</p>  <!-- Display: 慥 -->

HTML Hexadecimal:

<p>HTML hex: &#x6165;</p>  <!-- Display: 慥 -->

URL Encoding:

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

Encodings

MD5:

9f862f01c0de64437ee0a57852e3c580

SHA1:

da57afae1b657aa1da2eb08e9d4bc22d37326dba

Base64:

5oWl