Unicode Finder

"輁" U+8F01(CJK UNIFIED IDEOGRAPH-8F01)

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

Programming

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

Web

CSS
\008F01
HtmlDecimal
輁
HtmlHexadecimal
輁
Url
%E8%BC%81

Code

MD5
a7d928b406fa2b457e8cecc8fb865279
Sha1
fdd51082113624c7bdb9d2ebc553ecf26b17d127
Base64
6LyB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8F01';
console.log(char);  // Output: 輁

Java:

char c = '\u8F01';
System.out.println(c);  // Output: 輁

JSON:

{"text": "\u8F01"}  // Value: 輁

Python:

char = '\u8F01'
print(char)  # Output: 輁

Perl:

my $char = "\x{8F01}";
print $char;  # Output: 輁

PHP:

$char = "\x{8F01}";
echo $char;  // Output: 輁

Ruby:

char = "\u{8F01}"
puts char  # Output: 輁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36609;</p>  <!-- Display: 輁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F01;</p>  <!-- Display: 輁 -->

URL Encoding:

// 輁 URL encoding
https://unicodefinder.com/search.php?query=%E8%BC%81

Encodings

MD5:

a7d928b406fa2b457e8cecc8fb865279

SHA1:

fdd51082113624c7bdb9d2ebc553ecf26b17d127

Base64:

6LyB