Unicode Finder

"輱" U+8F31(CJK UNIFIED IDEOGRAPH-8F31)

U+8F31
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8F31

Programming

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

Web

CSS
\008F31
HtmlDecimal
輱
HtmlHexadecimal
輱
Url
%E8%BC%B1

Code

MD5
9e07e018b15a646e0e8bec99063a1fcb
Sha1
b58b0091e365f69513e0f78b8caf50308083b4ea
Base64
6Lyx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F31';
console.log(char);  // Output: 輱

Java:

char c = '\u8F31';
System.out.println(c);  // Output: 輱

JSON:

{"text": "\u8F31"}  // Value: 輱

Python:

char = '\u8F31'
print(char)  # Output: 輱

Perl:

my $char = "\x{8F31}";
print $char;  # Output: 輱

PHP:

$char = "\x{8F31}";
echo $char;  // Output: 輱

Ruby:

char = "\u{8F31}"
puts char  # Output: 輱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36657;</p>  <!-- Display: 輱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F31;</p>  <!-- Display: 輱 -->

URL Encoding:

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

Encodings

MD5:

9e07e018b15a646e0e8bec99063a1fcb

SHA1:

b58b0091e365f69513e0f78b8caf50308083b4ea

Base64:

6Lyx