Unicode Finder

"翚" U+7FDA(CJK UNIFIED IDEOGRAPH-7FDA)

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

Programming

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

Web

CSS
\007FDA
HtmlDecimal
翚
HtmlHexadecimal
翚
Url
%E7%BF%9A

Code

MD5
42ed46ec3018d2d61f1cdadf51cfe8ca
Sha1
7bd8259e93d02e03c6db87ce49b6832b3b747d08
Base64
57+a

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FDA';
console.log(char);  // Output: 翚

Java:

char c = '\u7FDA';
System.out.println(c);  // Output: 翚

JSON:

{"text": "\u7FDA"}  // Value: 翚

Python:

char = '\u7FDA'
print(char)  # Output: 翚

Perl:

my $char = "\x{7FDA}";
print $char;  # Output: 翚

PHP:

$char = "\x{7FDA}";
echo $char;  // Output: 翚

Ruby:

char = "\u{7FDA}"
puts char  # Output: 翚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32730;</p>  <!-- Display: 翚 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FDA;</p>  <!-- Display: 翚 -->

URL Encoding:

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

Encodings

MD5:

42ed46ec3018d2d61f1cdadf51cfe8ca

SHA1:

7bd8259e93d02e03c6db87ce49b6832b3b747d08

Base64:

57+a