Unicode Finder

"洨" U+6D28(CJK UNIFIED IDEOGRAPH-6D28)

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

Programming

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

Web

CSS
\006D28
HtmlDecimal
洨
HtmlHexadecimal
洨
Url
%E6%B4%A8

Code

MD5
5d21b9d2f48c422b5b6ab681f65f7ef2
Sha1
50c421d72d0ee943253436a8d3994d99926a6be0
Base64
5rSo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D28';
console.log(char);  // Output: 洨

Java:

char c = '\u6D28';
System.out.println(c);  // Output: 洨

JSON:

{"text": "\u6D28"}  // Value: 洨

Python:

char = '\u6D28'
print(char)  # Output: 洨

Perl:

my $char = "\x{6D28}";
print $char;  # Output: 洨

PHP:

$char = "\x{6D28}";
echo $char;  // Output: 洨

Ruby:

char = "\u{6D28}"
puts char  # Output: 洨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27944;</p>  <!-- Display: 洨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D28;</p>  <!-- Display: 洨 -->

URL Encoding:

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

Encodings

MD5:

5d21b9d2f48c422b5b6ab681f65f7ef2

SHA1:

50c421d72d0ee943253436a8d3994d99926a6be0

Base64:

5rSo