Unicode Finder

"泈" U+6CC8(CJK UNIFIED IDEOGRAPH-6CC8)

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

Programming

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

Web

CSS
\006CC8
HtmlDecimal
泈
HtmlHexadecimal
泈
Url
%E6%B3%88

Code

MD5
8606cdceef77f62cf615ed2fc8ee766a
Sha1
0b76424cd6591617461d5925ff38c17aa5b322c2
Base64
5rOI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6CC8';
console.log(char);  // Output: 泈

Java:

char c = '\u6CC8';
System.out.println(c);  // Output: 泈

JSON:

{"text": "\u6CC8"}  // Value: 泈

Python:

char = '\u6CC8'
print(char)  # Output: 泈

Perl:

my $char = "\x{6CC8}";
print $char;  # Output: 泈

PHP:

$char = "\x{6CC8}";
echo $char;  // Output: 泈

Ruby:

char = "\u{6CC8}"
puts char  # Output: 泈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27848;</p>  <!-- Display: 泈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CC8;</p>  <!-- Display: 泈 -->

URL Encoding:

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

Encodings

MD5:

8606cdceef77f62cf615ed2fc8ee766a

SHA1:

0b76424cd6591617461d5925ff38c17aa5b322c2

Base64:

5rOI