Unicode Finder

"湳" U+6E73(CJK UNIFIED IDEOGRAPH-6E73)

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

Programming

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

Web

CSS
\006E73
HtmlDecimal
湳
HtmlHexadecimal
湳
Url
%E6%B9%B3

Code

MD5
4713396a32e1fbdacbaa8ccd6dfe013b
Sha1
db9c02d370ee8b1b73a0cac6c6dd7c9a29ed3d08
Base64
5rmz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6E73';
console.log(char);  // Output: 湳

Java:

char c = '\u6E73';
System.out.println(c);  // Output: 湳

JSON:

{"text": "\u6E73"}  // Value: 湳

Python:

char = '\u6E73'
print(char)  # Output: 湳

Perl:

my $char = "\x{6E73}";
print $char;  # Output: 湳

PHP:

$char = "\x{6E73}";
echo $char;  // Output: 湳

Ruby:

char = "\u{6E73}"
puts char  # Output: 湳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28275;</p>  <!-- Display: 湳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E73;</p>  <!-- Display: 湳 -->

URL Encoding:

// 湳 URL encoding
https://unicodefinder.com/search.php?query=%E6%B9%B3

Encodings

MD5:

4713396a32e1fbdacbaa8ccd6dfe013b

SHA1:

db9c02d370ee8b1b73a0cac6c6dd7c9a29ed3d08

Base64:

5rmz