Unicode Finder

"翘" U+7FD8(CJK UNIFIED IDEOGRAPH-7FD8)

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

Programming

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

Web

CSS
\007FD8
HtmlDecimal
翘
HtmlHexadecimal
翘
Url
%E7%BF%98

Code

MD5
7530d3865dd08f9bca8d47d0c38e858c
Sha1
f090624e27a9b158f7ed81bbd5d6b9c1d6788e8e
Base64
57+Y

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FD8';
console.log(char);  // Output: 翘

Java:

char c = '\u7FD8';
System.out.println(c);  // Output: 翘

JSON:

{"text": "\u7FD8"}  // Value: 翘

Python:

char = '\u7FD8'
print(char)  # Output: 翘

Perl:

my $char = "\x{7FD8}";
print $char;  # Output: 翘

PHP:

$char = "\x{7FD8}";
echo $char;  // Output: 翘

Ruby:

char = "\u{7FD8}"
puts char  # Output: 翘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32728;</p>  <!-- Display: 翘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FD8;</p>  <!-- Display: 翘 -->

URL Encoding:

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

Encodings

MD5:

7530d3865dd08f9bca8d47d0c38e858c

SHA1:

f090624e27a9b158f7ed81bbd5d6b9c1d6788e8e

Base64:

57+Y