Unicode Finder

"鎃" U+9383(CJK UNIFIED IDEOGRAPH-9383)

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

Programming

C
\u9383
JavaScript
\u9383
Java
\u9383
Json
\u9383
Python
\u9383
Perl
\x{9383}
PHP
\x{9383}
Ruby
\u{9383}
Rust
\u{9383}
Go
\u9383

Web

CSS
\009383
HtmlDecimal
鎃
HtmlHexadecimal
鎃
Url
%E9%8E%83

Code

MD5
6bc445c135119147a950072697428843
Sha1
b3b5ab684ba95045fa79a481dead9c2954e59f24
Base64
6Y6D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9383';
console.log(char);  // Output: 鎃

Java:

char c = '\u9383';
System.out.println(c);  // Output: 鎃

JSON:

{"text": "\u9383"}  // Value: 鎃

Python:

char = '\u9383'
print(char)  # Output: 鎃

Perl:

my $char = "\x{9383}";
print $char;  # Output: 鎃

PHP:

$char = "\x{9383}";
echo $char;  // Output: 鎃

Ruby:

char = "\u{9383}"
puts char  # Output: 鎃

Rust:

let c = '\u{9383}';
println!("{}", c);  // Output: 鎃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009383";  /* Display: 鎃 */
}

HTML Decimal:

<p>HTML decimal: &#37763;</p>  <!-- Display: 鎃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9383;</p>  <!-- Display: 鎃 -->

URL Encoding:

// 鎃 URL encoding
https://unicodefinder.com/search.php?query=%E9%8E%83

Encodings

MD5:

6bc445c135119147a950072697428843

SHA1:

b3b5ab684ba95045fa79a481dead9c2954e59f24

Base64:

6Y6D