Unicode Finder

"輑" U+8F11(CJK UNIFIED IDEOGRAPH-8F11)

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

Programming

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

Web

CSS
\008F11
HtmlDecimal
輑
HtmlHexadecimal
輑
Url
%E8%BC%91

Code

MD5
f1367a54bf78e9f300cb34a6edaecde3
Sha1
b95394dd1a94ae64c05c47159b4d318b2b180401
Base64
6LyR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F11';
console.log(char);  // Output: 輑

Java:

char c = '\u8F11';
System.out.println(c);  // Output: 輑

JSON:

{"text": "\u8F11"}  // Value: 輑

Python:

char = '\u8F11'
print(char)  # Output: 輑

Perl:

my $char = "\x{8F11}";
print $char;  # Output: 輑

PHP:

$char = "\x{8F11}";
echo $char;  // Output: 輑

Ruby:

char = "\u{8F11}"
puts char  # Output: 輑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36625;</p>  <!-- Display: 輑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F11;</p>  <!-- Display: 輑 -->

URL Encoding:

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

Encodings

MD5:

f1367a54bf78e9f300cb34a6edaecde3

SHA1:

b95394dd1a94ae64c05c47159b4d318b2b180401

Base64:

6LyR