Unicode Finder

"翻" U+7FFB(CJK UNIFIED IDEOGRAPH-7FFB)

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

Programming

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

Web

CSS
\007FFB
HtmlDecimal
翻
HtmlHexadecimal
翻
Url
%E7%BF%BB

Code

MD5
6a8136ecdc1f81a06dbd1c4c8c155fc6
Sha1
e71d9fc9902329c2a779ad2a3a9724165843f8e3
Base64
57+7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FFB';
console.log(char);  // Output: 翻

Java:

char c = '\u7FFB';
System.out.println(c);  // Output: 翻

JSON:

{"text": "\u7FFB"}  // Value: 翻

Python:

char = '\u7FFB'
print(char)  # Output: 翻

Perl:

my $char = "\x{7FFB}";
print $char;  # Output: 翻

PHP:

$char = "\x{7FFB}";
echo $char;  // Output: 翻

Ruby:

char = "\u{7FFB}"
puts char  # Output: 翻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32763;</p>  <!-- Display: 翻 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FFB;</p>  <!-- Display: 翻 -->

URL Encoding:

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

Encodings

MD5:

6a8136ecdc1f81a06dbd1c4c8c155fc6

SHA1:

e71d9fc9902329c2a779ad2a3a9724165843f8e3

Base64:

57+7