Unicode Finder

"輧" U+8F27(CJK UNIFIED IDEOGRAPH-8F27)

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

Programming

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

Web

CSS
\008F27
HtmlDecimal
輧
HtmlHexadecimal
輧
Url
%E8%BC%A7

Code

MD5
b2eb4f714f2447ebf2cc81b34674ff7e
Sha1
fc8b48403c36aa98337d1e0191e9def80cc8caab
Base64
6Lyn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F27';
console.log(char);  // Output: 輧

Java:

char c = '\u8F27';
System.out.println(c);  // Output: 輧

JSON:

{"text": "\u8F27"}  // Value: 輧

Python:

char = '\u8F27'
print(char)  # Output: 輧

Perl:

my $char = "\x{8F27}";
print $char;  # Output: 輧

PHP:

$char = "\x{8F27}";
echo $char;  // Output: 輧

Ruby:

char = "\u{8F27}"
puts char  # Output: 輧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36647;</p>  <!-- Display: 輧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F27;</p>  <!-- Display: 輧 -->

URL Encoding:

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

Encodings

MD5:

b2eb4f714f2447ebf2cc81b34674ff7e

SHA1:

fc8b48403c36aa98337d1e0191e9def80cc8caab

Base64:

6Lyn