Unicode Finder

"洤" U+6D24(CJK UNIFIED IDEOGRAPH-6D24)

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

Programming

C
\u6D24
JavaScript
\u6D24
Java
\u6D24
Json
\u6D24
Python
\u6D24
Perl
\x{6D24}
PHP
\x{6D24}
Ruby
\u{6D24}
Rust
\u{6D24}
Go
\u6D24

Web

CSS
\006D24
HtmlDecimal
洤
HtmlHexadecimal
洤
Url
%E6%B4%A4

Code

MD5
8c49af4cd919740aef4b85c3bd3e6d79
Sha1
0b4ffce14dac01b4902588f7f844c7e41d7e9dbe
Base64
5rSk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6D24';
console.log(char);  // Output: 洤

Java:

char c = '\u6D24';
System.out.println(c);  // Output: 洤

JSON:

{"text": "\u6D24"}  // Value: 洤

Python:

char = '\u6D24'
print(char)  # Output: 洤

Perl:

my $char = "\x{6D24}";
print $char;  # Output: 洤

PHP:

$char = "\x{6D24}";
echo $char;  // Output: 洤

Ruby:

char = "\u{6D24}"
puts char  # Output: 洤

Rust:

let c = '\u{6D24}';
println!("{}", c);  // Output: 洤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006D24";  /* Display: 洤 */
}

HTML Decimal:

<p>HTML decimal: &#27940;</p>  <!-- Display: 洤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D24;</p>  <!-- Display: 洤 -->

URL Encoding:

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

Encodings

MD5:

8c49af4cd919740aef4b85c3bd3e6d79

SHA1:

0b4ffce14dac01b4902588f7f844c7e41d7e9dbe

Base64:

5rSk