Unicode Finder

"濜" U+6FDC(CJK UNIFIED IDEOGRAPH-6FDC)

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

Programming

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

Web

CSS
\006FDC
HtmlDecimal
濜
HtmlHexadecimal
濜
Url
%E6%BF%9C

Code

MD5
aedfb2db3ccb1882d6f5a6ba3f5e8846
Sha1
dce7d5ac027882c87f407adc26af1596765accd1
Base64
5r+c

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FDC';
console.log(char);  // Output: 濜

Java:

char c = '\u6FDC';
System.out.println(c);  // Output: 濜

JSON:

{"text": "\u6FDC"}  // Value: 濜

Python:

char = '\u6FDC'
print(char)  # Output: 濜

Perl:

my $char = "\x{6FDC}";
print $char;  # Output: 濜

PHP:

$char = "\x{6FDC}";
echo $char;  // Output: 濜

Ruby:

char = "\u{6FDC}"
puts char  # Output: 濜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28636;</p>  <!-- Display: 濜 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FDC;</p>  <!-- Display: 濜 -->

URL Encoding:

// 濜 URL encoding
https://unicodefinder.com/search.php?query=%E6%BF%9C

Encodings

MD5:

aedfb2db3ccb1882d6f5a6ba3f5e8846

SHA1:

dce7d5ac027882c87f407adc26af1596765accd1

Base64:

5r+c