Unicode Finder

"泭" U+6CED(CJK UNIFIED IDEOGRAPH-6CED)

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

Programming

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

Web

CSS
\006CED
HtmlDecimal
泭
HtmlHexadecimal
泭
Url
%E6%B3%AD

Code

MD5
174e06a6cd3d0ff97e48a1d8a9b6646e
Sha1
b57576dd921c4be9b0dfd1b53e3f9fe71ef55e6f
Base64
5rOt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6CED';
console.log(char);  // Output: 泭

Java:

char c = '\u6CED';
System.out.println(c);  // Output: 泭

JSON:

{"text": "\u6CED"}  // Value: 泭

Python:

char = '\u6CED'
print(char)  # Output: 泭

Perl:

my $char = "\x{6CED}";
print $char;  # Output: 泭

PHP:

$char = "\x{6CED}";
echo $char;  // Output: 泭

Ruby:

char = "\u{6CED}"
puts char  # Output: 泭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27885;</p>  <!-- Display: 泭 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CED;</p>  <!-- Display: 泭 -->

URL Encoding:

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

Encodings

MD5:

174e06a6cd3d0ff97e48a1d8a9b6646e

SHA1:

b57576dd921c4be9b0dfd1b53e3f9fe71ef55e6f

Base64:

5rOt