Unicode Finder

"慍" U+614D(CJK UNIFIED IDEOGRAPH-614D)

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

Programming

C
\u614D
JavaScript
\u614D
Java
\u614D
Json
\u614D
Python
\u614D
Perl
\x{614D}
PHP
\x{614D}
Ruby
\u{614D}
Rust
\u{614D}
Go
\u614D

Web

CSS
\00614D
HtmlDecimal
慍
HtmlHexadecimal
慍
Url
%E6%85%8D

Code

MD5
b4d0736117d8d4cc41ef26c4f832a9ca
Sha1
7e4dd421aededb4d535808c2a1c802683c050e4b
Base64
5oWN

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u614D';
console.log(char);  // Output: 慍

Java:

char c = '\u614D';
System.out.println(c);  // Output: 慍

JSON:

{"text": "\u614D"}  // Value: 慍

Python:

char = '\u614D'
print(char)  # Output: 慍

Perl:

my $char = "\x{614D}";
print $char;  # Output: 慍

PHP:

$char = "\x{614D}";
echo $char;  // Output: 慍

Ruby:

char = "\u{614D}"
puts char  # Output: 慍

Rust:

let c = '\u{614D}';
println!("{}", c);  // Output: 慍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00614D";  /* Display: 慍 */
}

HTML Decimal:

<p>HTML decimal: &#24909;</p>  <!-- Display: 慍 -->

HTML Hexadecimal:

<p>HTML hex: &#x614D;</p>  <!-- Display: 慍 -->

URL Encoding:

// 慍 URL encoding
https://unicodefinder.com/search.php?query=%E6%85%8D

Encodings

MD5:

b4d0736117d8d4cc41ef26c4f832a9ca

SHA1:

7e4dd421aededb4d535808c2a1c802683c050e4b

Base64:

5oWN