Unicode Finder

"淩" U+6DE9(CJK UNIFIED IDEOGRAPH-6DE9)

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

Programming

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

Web

CSS
\006DE9
HtmlDecimal
淩
HtmlHexadecimal
淩
Url
%E6%B7%A9

Code

MD5
c39e61f8bea103bff9258da130ac0d65
Sha1
2a2487aa7a241617ea56a04d8d5fede8cb79c99e
Base64
5rep

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DE9';
console.log(char);  // Output: 淩

Java:

char c = '\u6DE9';
System.out.println(c);  // Output: 淩

JSON:

{"text": "\u6DE9"}  // Value: 淩

Python:

char = '\u6DE9'
print(char)  # Output: 淩

Perl:

my $char = "\x{6DE9}";
print $char;  # Output: 淩

PHP:

$char = "\x{6DE9}";
echo $char;  // Output: 淩

Ruby:

char = "\u{6DE9}"
puts char  # Output: 淩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28137;</p>  <!-- Display: 淩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DE9;</p>  <!-- Display: 淩 -->

URL Encoding:

// 淩 URL encoding
https://unicodefinder.com/search.php?query=%E6%B7%A9

Encodings

MD5:

c39e61f8bea103bff9258da130ac0d65

SHA1:

2a2487aa7a241617ea56a04d8d5fede8cb79c99e

Base64:

5rep