Unicode Finder

"慒" U+6152(CJK UNIFIED IDEOGRAPH-6152)

U+6152
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6152

Programming

C
\u6152
JavaScript
\u6152
Java
\u6152
Json
\u6152
Python
\u6152
Perl
\x{6152}
PHP
\x{6152}
Ruby
\u{6152}
Rust
\u{6152}
Go
\u6152

Web

CSS
\006152
HtmlDecimal
慒
HtmlHexadecimal
慒
Url
%E6%85%92

Code

MD5
78a845d2e72e0136c5a5bb9d105b5083
Sha1
94d315d1983c7038642bf649918ab17053599941
Base64
5oWS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6152';
console.log(char);  // Output: 慒

Java:

char c = '\u6152';
System.out.println(c);  // Output: 慒

JSON:

{"text": "\u6152"}  // Value: 慒

Python:

char = '\u6152'
print(char)  # Output: 慒

Perl:

my $char = "\x{6152}";
print $char;  # Output: 慒

PHP:

$char = "\x{6152}";
echo $char;  // Output: 慒

Ruby:

char = "\u{6152}"
puts char  # Output: 慒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006152";  /* Display: 慒 */
}

HTML Decimal:

<p>HTML decimal: &#24914;</p>  <!-- Display: 慒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6152;</p>  <!-- Display: 慒 -->

URL Encoding:

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

Encodings

MD5:

78a845d2e72e0136c5a5bb9d105b5083

SHA1:

94d315d1983c7038642bf649918ab17053599941

Base64:

5oWS