Unicode Finder

"锟" U+951F(CJK UNIFIED IDEOGRAPH-951F)

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

Programming

C
\u951F
JavaScript
\u951F
Java
\u951F
Json
\u951F
Python
\u951F
Perl
\x{951F}
PHP
\x{951F}
Ruby
\u{951F}
Rust
\u{951F}
Go
\u951F

Web

CSS
\00951F
HtmlDecimal
锟
HtmlHexadecimal
锟
Url
%E9%94%9F

Code

MD5
b9731f844926f22613541901d884cc3e
Sha1
a43f3ee0961060b81b73476db118e1acdf75ad7f
Base64
6ZSf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u951F';
console.log(char);  // Output: 锟

Java:

char c = '\u951F';
System.out.println(c);  // Output: 锟

JSON:

{"text": "\u951F"}  // Value: 锟

Python:

char = '\u951F'
print(char)  # Output: 锟

Perl:

my $char = "\x{951F}";
print $char;  # Output: 锟

PHP:

$char = "\x{951F}";
echo $char;  // Output: 锟

Ruby:

char = "\u{951F}"
puts char  # Output: 锟

Rust:

let c = '\u{951F}';
println!("{}", c);  // Output: 锟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00951F";  /* Display: 锟 */
}

HTML Decimal:

<p>HTML decimal: &#38175;</p>  <!-- Display: 锟 -->

HTML Hexadecimal:

<p>HTML hex: &#x951F;</p>  <!-- Display: 锟 -->

URL Encoding:

// 锟 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%9F

Encodings

MD5:

b9731f844926f22613541901d884cc3e

SHA1:

a43f3ee0961060b81b73476db118e1acdf75ad7f

Base64:

6ZSf