Unicode Finder

"辄" U+8F84(CJK UNIFIED IDEOGRAPH-8F84)

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

Programming

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

Web

CSS
\008F84
HtmlDecimal
辄
HtmlHexadecimal
辄
Url
%E8%BE%84

Code

MD5
e82a2835dee266e801ef361bccad20ce
Sha1
6722f4e0933d55a091a0e845f7bd97446cc0d7e8
Base64
6L6E

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F84';
console.log(char);  // Output: 辄

Java:

char c = '\u8F84';
System.out.println(c);  // Output: 辄

JSON:

{"text": "\u8F84"}  // Value: 辄

Python:

char = '\u8F84'
print(char)  # Output: 辄

Perl:

my $char = "\x{8F84}";
print $char;  # Output: 辄

PHP:

$char = "\x{8F84}";
echo $char;  // Output: 辄

Ruby:

char = "\u{8F84}"
puts char  # Output: 辄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36740;</p>  <!-- Display: 辄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F84;</p>  <!-- Display: 辄 -->

URL Encoding:

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

Encodings

MD5:

e82a2835dee266e801ef361bccad20ce

SHA1:

6722f4e0933d55a091a0e845f7bd97446cc0d7e8

Base64:

6L6E