Unicode Finder

"鍟" U+935F(CJK UNIFIED IDEOGRAPH-935F)

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

Programming

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

Web

CSS
\00935F
HtmlDecimal
鍟
HtmlHexadecimal
鍟
Url
%E9%8D%9F

Code

MD5
d841f1201320cefc27c27177b7cd4c39
Sha1
bf6cdc4e8f2cca662c8bbd0f0c5f76d87778521a
Base64
6Y2f

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u935F';
console.log(char);  // Output: 鍟

Java:

char c = '\u935F';
System.out.println(c);  // Output: 鍟

JSON:

{"text": "\u935F"}  // Value: 鍟

Python:

char = '\u935F'
print(char)  # Output: 鍟

Perl:

my $char = "\x{935F}";
print $char;  # Output: 鍟

PHP:

$char = "\x{935F}";
echo $char;  // Output: 鍟

Ruby:

char = "\u{935F}"
puts char  # Output: 鍟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37727;</p>  <!-- Display: 鍟 -->

HTML Hexadecimal:

<p>HTML hex: &#x935F;</p>  <!-- Display: 鍟 -->

URL Encoding:

// 鍟 URL encoding
https://unicodefinder.com/search.php?query=%E9%8D%9F

Encodings

MD5:

d841f1201320cefc27c27177b7cd4c39

SHA1:

bf6cdc4e8f2cca662c8bbd0f0c5f76d87778521a

Base64:

6Y2f