Unicode Finder

"辒" U+8F92(CJK UNIFIED IDEOGRAPH-8F92)

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

Programming

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

Web

CSS
\008F92
HtmlDecimal
辒
HtmlHexadecimal
辒
Url
%E8%BE%92

Code

MD5
4b461a2ef33f7270c51b890b8f86c364
Sha1
bcb6c2b28107bc8535d7db65fcd401948ea87916
Base64
6L6S

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8F92';
console.log(char);  // Output: 辒

Java:

char c = '\u8F92';
System.out.println(c);  // Output: 辒

JSON:

{"text": "\u8F92"}  // Value: 辒

Python:

char = '\u8F92'
print(char)  # Output: 辒

Perl:

my $char = "\x{8F92}";
print $char;  # Output: 辒

PHP:

$char = "\x{8F92}";
echo $char;  // Output: 辒

Ruby:

char = "\u{8F92}"
puts char  # Output: 辒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36754;</p>  <!-- Display: 辒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F92;</p>  <!-- Display: 辒 -->

URL Encoding:

// 辒 URL encoding
https://unicodefinder.com/search.php?query=%E8%BE%92

Encodings

MD5:

4b461a2ef33f7270c51b890b8f86c364

SHA1:

bcb6c2b28107bc8535d7db65fcd401948ea87916

Base64:

6L6S