Unicode Finder

"钃" U+9483(CJK UNIFIED IDEOGRAPH-9483)

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

Programming

C
\u9483
JavaScript
\u9483
Java
\u9483
Json
\u9483
Python
\u9483
Perl
\x{9483}
PHP
\x{9483}
Ruby
\u{9483}
Rust
\u{9483}
Go
\u9483

Web

CSS
\009483
HtmlDecimal
钃
HtmlHexadecimal
钃
Url
%E9%92%83

Code

MD5
d00630b89d2ca4ca942267717e95c388
Sha1
82042748585ec0c8944feb061e9c5168989bd346
Base64
6ZKD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9483';
console.log(char);  // Output: 钃

Java:

char c = '\u9483';
System.out.println(c);  // Output: 钃

JSON:

{"text": "\u9483"}  // Value: 钃

Python:

char = '\u9483'
print(char)  # Output: 钃

Perl:

my $char = "\x{9483}";
print $char;  # Output: 钃

PHP:

$char = "\x{9483}";
echo $char;  // Output: 钃

Ruby:

char = "\u{9483}"
puts char  # Output: 钃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009483";  /* Display: 钃 */
}

HTML Decimal:

<p>HTML decimal: &#38019;</p>  <!-- Display: 钃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9483;</p>  <!-- Display: 钃 -->

URL Encoding:

// 钃 URL encoding
https://unicodefinder.com/search.php?query=%E9%92%83

Encodings

MD5:

d00630b89d2ca4ca942267717e95c388

SHA1:

82042748585ec0c8944feb061e9c5168989bd346

Base64:

6ZKD