Unicode Finder

"慤" U+6164(CJK UNIFIED IDEOGRAPH-6164)

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

Programming

C
\u6164
JavaScript
\u6164
Java
\u6164
Json
\u6164
Python
\u6164
Perl
\x{6164}
PHP
\x{6164}
Ruby
\u{6164}
Rust
\u{6164}
Go
\u6164

Web

CSS
\006164
HtmlDecimal
慤
HtmlHexadecimal
慤
Url
%E6%85%A4

Code

MD5
68900d3c205af9294b3a5692ced781a1
Sha1
f1c544a5a2768cdaaec35cf668d81fa9b4e4dbe3
Base64
5oWk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6164';
console.log(char);  // Output: 慤

Java:

char c = '\u6164';
System.out.println(c);  // Output: 慤

JSON:

{"text": "\u6164"}  // Value: 慤

Python:

char = '\u6164'
print(char)  # Output: 慤

Perl:

my $char = "\x{6164}";
print $char;  # Output: 慤

PHP:

$char = "\x{6164}";
echo $char;  // Output: 慤

Ruby:

char = "\u{6164}"
puts char  # Output: 慤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006164";  /* Display: 慤 */
}

HTML Decimal:

<p>HTML decimal: &#24932;</p>  <!-- Display: 慤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6164;</p>  <!-- Display: 慤 -->

URL Encoding:

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

Encodings

MD5:

68900d3c205af9294b3a5692ced781a1

SHA1:

f1c544a5a2768cdaaec35cf668d81fa9b4e4dbe3

Base64:

5oWk