Unicode Finder

"翏" U+7FCF(CJK UNIFIED IDEOGRAPH-7FCF)

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

Programming

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

Web

CSS
\007FCF
HtmlDecimal
翏
HtmlHexadecimal
翏
Url
%E7%BF%8F

Code

MD5
f4a3557da7c921d85e7ca8e67d9cd4ef
Sha1
ef6ae8a52475e86c1584521fe128c88cd59645d2
Base64
57+P

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FCF';
console.log(char);  // Output: 翏

Java:

char c = '\u7FCF';
System.out.println(c);  // Output: 翏

JSON:

{"text": "\u7FCF"}  // Value: 翏

Python:

char = '\u7FCF'
print(char)  # Output: 翏

Perl:

my $char = "\x{7FCF}";
print $char;  # Output: 翏

PHP:

$char = "\x{7FCF}";
echo $char;  // Output: 翏

Ruby:

char = "\u{7FCF}"
puts char  # Output: 翏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32719;</p>  <!-- Display: 翏 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FCF;</p>  <!-- Display: 翏 -->

URL Encoding:

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

Encodings

MD5:

f4a3557da7c921d85e7ca8e67d9cd4ef

SHA1:

ef6ae8a52475e86c1584521fe128c88cd59645d2

Base64:

57+P