Unicode Finder

"翴" U+7FF4(CJK UNIFIED IDEOGRAPH-7FF4)

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

Programming

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

Web

CSS
\007FF4
HtmlDecimal
翴
HtmlHexadecimal
翴
Url
%E7%BF%B4

Code

MD5
a4b284602a88e4e0277b59598a5619e5
Sha1
45df77726bff16a5f887420b041d748874cd391f
Base64
57+0

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FF4';
console.log(char);  // Output: 翴

Java:

char c = '\u7FF4';
System.out.println(c);  // Output: 翴

JSON:

{"text": "\u7FF4"}  // Value: 翴

Python:

char = '\u7FF4'
print(char)  # Output: 翴

Perl:

my $char = "\x{7FF4}";
print $char;  # Output: 翴

PHP:

$char = "\x{7FF4}";
echo $char;  // Output: 翴

Ruby:

char = "\u{7FF4}"
puts char  # Output: 翴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32756;</p>  <!-- Display: 翴 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FF4;</p>  <!-- Display: 翴 -->

URL Encoding:

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

Encodings

MD5:

a4b284602a88e4e0277b59598a5619e5

SHA1:

45df77726bff16a5f887420b041d748874cd391f

Base64:

57+0