Unicode Finder

"鍛" U+935B(CJK UNIFIED IDEOGRAPH-935B)

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

Programming

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

Web

CSS
\00935B
HtmlDecimal
鍛
HtmlHexadecimal
鍛
Url
%E9%8D%9B

Code

MD5
1f6c910615923d92c304688a8c9fbb52
Sha1
b0cca5ba79d49cb8ba49ba047d8a5a54f56c7c7e
Base64
6Y2b

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u935B';
console.log(char);  // Output: 鍛

Java:

char c = '\u935B';
System.out.println(c);  // Output: 鍛

JSON:

{"text": "\u935B"}  // Value: 鍛

Python:

char = '\u935B'
print(char)  # Output: 鍛

Perl:

my $char = "\x{935B}";
print $char;  # Output: 鍛

PHP:

$char = "\x{935B}";
echo $char;  // Output: 鍛

Ruby:

char = "\u{935B}"
puts char  # Output: 鍛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37723;</p>  <!-- Display: 鍛 -->

HTML Hexadecimal:

<p>HTML hex: &#x935B;</p>  <!-- Display: 鍛 -->

URL Encoding:

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

Encodings

MD5:

1f6c910615923d92c304688a8c9fbb52

SHA1:

b0cca5ba79d49cb8ba49ba047d8a5a54f56c7c7e

Base64:

6Y2b