Unicode Finder

"翿" U+7FFF(CJK UNIFIED IDEOGRAPH-7FFF)

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

Programming

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

Web

CSS
\007FFF
HtmlDecimal
翿
HtmlHexadecimal
翿
Url
%E7%BF%BF

Code

MD5
8b460dbd90b92709ea30013df924ccff
Sha1
05027a4e464cfdb26a75a1c60fcf4cc949dcd721
Base64
57+/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FFF';
console.log(char);  // Output: 翿

Java:

char c = '\u7FFF';
System.out.println(c);  // Output: 翿

JSON:

{"text": "\u7FFF"}  // Value: 翿

Python:

char = '\u7FFF'
print(char)  # Output: 翿

Perl:

my $char = "\x{7FFF}";
print $char;  # Output: 翿

PHP:

$char = "\x{7FFF}";
echo $char;  // Output: 翿

Ruby:

char = "\u{7FFF}"
puts char  # Output: 翿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32767;</p>  <!-- Display: 翿 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FFF;</p>  <!-- Display: 翿 -->

URL Encoding:

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

Encodings

MD5:

8b460dbd90b92709ea30013df924ccff

SHA1:

05027a4e464cfdb26a75a1c60fcf4cc949dcd721

Base64:

57+/