Unicode Finder

"淞" U+6DDE(CJK UNIFIED IDEOGRAPH-6DDE)

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

Programming

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

Web

CSS
\006DDE
HtmlDecimal
淞
HtmlHexadecimal
淞
Url
%E6%B7%9E

Code

MD5
014c8ecfab34df07bc85f6200bd2d564
Sha1
137026283fe7fab8ff88019e1a508185e51ccca7
Base64
5ree

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DDE';
console.log(char);  // Output: 淞

Java:

char c = '\u6DDE';
System.out.println(c);  // Output: 淞

JSON:

{"text": "\u6DDE"}  // Value: 淞

Python:

char = '\u6DDE'
print(char)  # Output: 淞

Perl:

my $char = "\x{6DDE}";
print $char;  # Output: 淞

PHP:

$char = "\x{6DDE}";
echo $char;  // Output: 淞

Ruby:

char = "\u{6DDE}"
puts char  # Output: 淞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28126;</p>  <!-- Display: 淞 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DDE;</p>  <!-- Display: 淞 -->

URL Encoding:

// 淞 URL encoding
https://unicodefinder.com/search.php?query=%E6%B7%9E

Encodings

MD5:

014c8ecfab34df07bc85f6200bd2d564

SHA1:

137026283fe7fab8ff88019e1a508185e51ccca7

Base64:

5ree