Unicode Finder

"翬" U+7FEC(CJK UNIFIED IDEOGRAPH-7FEC)

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

Programming

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

Web

CSS
\007FEC
HtmlDecimal
翬
HtmlHexadecimal
翬
Url
%E7%BF%AC

Code

MD5
6fff50c8bce7bdbe101cd881d0c282ee
Sha1
89a45e65b76601ca4eeafe8876a647d99d35d152
Base64
57+s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FEC';
console.log(char);  // Output: 翬

Java:

char c = '\u7FEC';
System.out.println(c);  // Output: 翬

JSON:

{"text": "\u7FEC"}  // Value: 翬

Python:

char = '\u7FEC'
print(char)  # Output: 翬

Perl:

my $char = "\x{7FEC}";
print $char;  # Output: 翬

PHP:

$char = "\x{7FEC}";
echo $char;  // Output: 翬

Ruby:

char = "\u{7FEC}"
puts char  # Output: 翬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32748;</p>  <!-- Display: 翬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FEC;</p>  <!-- Display: 翬 -->

URL Encoding:

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

Encodings

MD5:

6fff50c8bce7bdbe101cd881d0c282ee

SHA1:

89a45e65b76601ca4eeafe8876a647d99d35d152

Base64:

57+s