Unicode Finder

"锕" U+9515(CJK UNIFIED IDEOGRAPH-9515)

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

Programming

C
\u9515
JavaScript
\u9515
Java
\u9515
Json
\u9515
Python
\u9515
Perl
\x{9515}
PHP
\x{9515}
Ruby
\u{9515}
Rust
\u{9515}
Go
\u9515

Web

CSS
\009515
HtmlDecimal
锕
HtmlHexadecimal
锕
Url
%E9%94%95

Code

MD5
eb1e0fa002a29df67b9cd8ec5cb37f73
Sha1
5337572866816d4957a1a569873655218722cab9
Base64
6ZSV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9515';
console.log(char);  // Output: 锕

Java:

char c = '\u9515';
System.out.println(c);  // Output: 锕

JSON:

{"text": "\u9515"}  // Value: 锕

Python:

char = '\u9515'
print(char)  # Output: 锕

Perl:

my $char = "\x{9515}";
print $char;  # Output: 锕

PHP:

$char = "\x{9515}";
echo $char;  // Output: 锕

Ruby:

char = "\u{9515}"
puts char  # Output: 锕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009515";  /* Display: 锕 */
}

HTML Decimal:

<p>HTML decimal: &#38165;</p>  <!-- Display: 锕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9515;</p>  <!-- Display: 锕 -->

URL Encoding:

// 锕 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%95

Encodings

MD5:

eb1e0fa002a29df67b9cd8ec5cb37f73

SHA1:

5337572866816d4957a1a569873655218722cab9

Base64:

6ZSV