Unicode Finder

"翝" U+7FDD(CJK UNIFIED IDEOGRAPH-7FDD)

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

Programming

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

Web

CSS
\007FDD
HtmlDecimal
翝
HtmlHexadecimal
翝
Url
%E7%BF%9D

Code

MD5
b149ac7f1df1557d2f41994c53c6844f
Sha1
a543c60d98f15e08a7b0bc8899fcc00a59b3396f
Base64
57+d

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FDD';
console.log(char);  // Output: 翝

Java:

char c = '\u7FDD';
System.out.println(c);  // Output: 翝

JSON:

{"text": "\u7FDD"}  // Value: 翝

Python:

char = '\u7FDD'
print(char)  # Output: 翝

Perl:

my $char = "\x{7FDD}";
print $char;  # Output: 翝

PHP:

$char = "\x{7FDD}";
echo $char;  // Output: 翝

Ruby:

char = "\u{7FDD}"
puts char  # Output: 翝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32733;</p>  <!-- Display: 翝 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FDD;</p>  <!-- Display: 翝 -->

URL Encoding:

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

Encodings

MD5:

b149ac7f1df1557d2f41994c53c6844f

SHA1:

a543c60d98f15e08a7b0bc8899fcc00a59b3396f

Base64:

57+d