Unicode Finder

"翜" U+7FDC(CJK UNIFIED IDEOGRAPH-7FDC)

U+7FDC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7FDC

Programming

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

Web

CSS
\007FDC
HtmlDecimal
翜
HtmlHexadecimal
翜
Url
%E7%BF%9C

Code

MD5
b98a91155abdddc36aecf8c0d6d7c8eb
Sha1
b94cf17977c59f845bdcba4f124a527e9d01c50e
Base64
57+c

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FDC';
console.log(char);  // Output: 翜

Java:

char c = '\u7FDC';
System.out.println(c);  // Output: 翜

JSON:

{"text": "\u7FDC"}  // Value: 翜

Python:

char = '\u7FDC'
print(char)  # Output: 翜

Perl:

my $char = "\x{7FDC}";
print $char;  # Output: 翜

PHP:

$char = "\x{7FDC}";
echo $char;  // Output: 翜

Ruby:

char = "\u{7FDC}"
puts char  # Output: 翜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32732;</p>  <!-- Display: 翜 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FDC;</p>  <!-- Display: 翜 -->

URL Encoding:

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

Encodings

MD5:

b98a91155abdddc36aecf8c0d6d7c8eb

SHA1:

b94cf17977c59f845bdcba4f124a527e9d01c50e

Base64:

57+c