Unicode Finder

"翔" U+7FD4(CJK UNIFIED IDEOGRAPH-7FD4)

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

Programming

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

Web

CSS
\007FD4
HtmlDecimal
翔
HtmlHexadecimal
翔
Url
%E7%BF%94

Code

MD5
b3aa4b2968d252d789dcee74b0afbfb1
Sha1
9ae790e25b6c1c435c0b0a35299a481c74fc7967
Base64
57+U

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FD4';
console.log(char);  // Output: 翔

Java:

char c = '\u7FD4';
System.out.println(c);  // Output: 翔

JSON:

{"text": "\u7FD4"}  // Value: 翔

Python:

char = '\u7FD4'
print(char)  # Output: 翔

Perl:

my $char = "\x{7FD4}";
print $char;  # Output: 翔

PHP:

$char = "\x{7FD4}";
echo $char;  // Output: 翔

Ruby:

char = "\u{7FD4}"
puts char  # Output: 翔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32724;</p>  <!-- Display: 翔 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FD4;</p>  <!-- Display: 翔 -->

URL Encoding:

// 翔 URL encoding
https://unicodefinder.com/search.php?query=%E7%BF%94

Encodings

MD5:

b3aa4b2968d252d789dcee74b0afbfb1

SHA1:

9ae790e25b6c1c435c0b0a35299a481c74fc7967

Base64:

57+U