Unicode Finder

"轃" U+8F43(CJK UNIFIED IDEOGRAPH-8F43)

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

Programming

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

Web

CSS
\008F43
HtmlDecimal
轃
HtmlHexadecimal
轃
Url
%E8%BD%83

Code

MD5
5bbbe8e2e36c581b1f507d9ed9787ddf
Sha1
1f89a7d23dd748663cefbff59ddde7db1c313ed2
Base64
6L2D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8F43';
console.log(char);  // Output: 轃

Java:

char c = '\u8F43';
System.out.println(c);  // Output: 轃

JSON:

{"text": "\u8F43"}  // Value: 轃

Python:

char = '\u8F43'
print(char)  # Output: 轃

Perl:

my $char = "\x{8F43}";
print $char;  # Output: 轃

PHP:

$char = "\x{8F43}";
echo $char;  // Output: 轃

Ruby:

char = "\u{8F43}"
puts char  # Output: 轃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36675;</p>  <!-- Display: 轃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8F43;</p>  <!-- Display: 轃 -->

URL Encoding:

// 轃 URL encoding
https://unicodefinder.com/search.php?query=%E8%BD%83

Encodings

MD5:

5bbbe8e2e36c581b1f507d9ed9787ddf

SHA1:

1f89a7d23dd748663cefbff59ddde7db1c313ed2

Base64:

6L2D