Unicode Finder

"輝" U+8F1D(CJK UNIFIED IDEOGRAPH-8F1D)

U+8F1D
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8F1D

Programming

C
\u8F1D
JavaScript
\u8F1D
Java
\u8F1D
Json
\u8F1D
Python
\u8F1D
Perl
\x{8F1D}
PHP
\x{8F1D}
Ruby
\u{8F1D}
Rust
\u{8F1D}
Go
\u8F1D

Web

CSS
\008F1D
HtmlDecimal
輝
HtmlHexadecimal
輝
Url
%E8%BC%9D

Code

MD5
24207058d2871b301786e242f912b343
Sha1
09c77cfc794f2b2450edc0029d3d807870fd071c
Base64
6Lyd

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8F1D';
console.log(char);  // Output: 輝

Java:

char c = '\u8F1D';
System.out.println(c);  // Output: 輝

JSON:

{"text": "\u8F1D"}  // Value: 輝

Python:

char = '\u8F1D'
print(char)  # Output: 輝

Perl:

my $char = "\x{8F1D}";
print $char;  # Output: 輝

PHP:

$char = "\x{8F1D}";
echo $char;  // Output: 輝

Ruby:

char = "\u{8F1D}"
puts char  # Output: 輝

Rust:

let c = '\u{8F1D}';
println!("{}", c);  // Output: 輝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008F1D";  /* Display: 輝 */
}

HTML Decimal:

<p>HTML decimal: &#36637;</p>  <!-- Display: 輝 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F1D;</p>  <!-- Display: 輝 -->

URL Encoding:

// 輝 URL encoding
https://unicodefinder.com/search.php?query=%E8%BC%9D

Encodings

MD5:

24207058d2871b301786e242f912b343

SHA1:

09c77cfc794f2b2450edc0029d3d807870fd071c

Base64:

6Lyd