Unicode Finder

"泞" U+6CDE(CJK UNIFIED IDEOGRAPH-6CDE)

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

Programming

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

Web

CSS
\006CDE
HtmlDecimal
泞
HtmlHexadecimal
泞
Url
%E6%B3%9E

Code

MD5
137800689eedaeb8fe05864bab7f68eb
Sha1
8c1f1fbe44ffdfd83580d04bd358fb299f6b279f
Base64
5rOe

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6CDE';
console.log(char);  // Output: 泞

Java:

char c = '\u6CDE';
System.out.println(c);  // Output: 泞

JSON:

{"text": "\u6CDE"}  // Value: 泞

Python:

char = '\u6CDE'
print(char)  # Output: 泞

Perl:

my $char = "\x{6CDE}";
print $char;  # Output: 泞

PHP:

$char = "\x{6CDE}";
echo $char;  // Output: 泞

Ruby:

char = "\u{6CDE}"
puts char  # Output: 泞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27870;</p>  <!-- Display: 泞 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CDE;</p>  <!-- Display: 泞 -->

URL Encoding:

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

Encodings

MD5:

137800689eedaeb8fe05864bab7f68eb

SHA1:

8c1f1fbe44ffdfd83580d04bd358fb299f6b279f

Base64:

5rOe