Unicode Finder

"鎓" U+9393(CJK UNIFIED IDEOGRAPH-9393)

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

Programming

C
\u9393
JavaScript
\u9393
Java
\u9393
Json
\u9393
Python
\u9393
Perl
\x{9393}
PHP
\x{9393}
Ruby
\u{9393}
Rust
\u{9393}
Go
\u9393

Web

CSS
\009393
HtmlDecimal
鎓
HtmlHexadecimal
鎓
Url
%E9%8E%93

Code

MD5
fd41b03bfd765421cb8f4e55b7221d19
Sha1
54be51bff4c9d6fdf1bafc13e54e572c7350f22d
Base64
6Y6T

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9393';
console.log(char);  // Output: 鎓

Java:

char c = '\u9393';
System.out.println(c);  // Output: 鎓

JSON:

{"text": "\u9393"}  // Value: 鎓

Python:

char = '\u9393'
print(char)  # Output: 鎓

Perl:

my $char = "\x{9393}";
print $char;  # Output: 鎓

PHP:

$char = "\x{9393}";
echo $char;  // Output: 鎓

Ruby:

char = "\u{9393}"
puts char  # Output: 鎓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009393";  /* Display: 鎓 */
}

HTML Decimal:

<p>HTML decimal: &#37779;</p>  <!-- Display: 鎓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9393;</p>  <!-- Display: 鎓 -->

URL Encoding:

// 鎓 URL encoding
https://unicodefinder.com/search.php?query=%E9%8E%93

Encodings

MD5:

fd41b03bfd765421cb8f4e55b7221d19

SHA1:

54be51bff4c9d6fdf1bafc13e54e572c7350f22d

Base64:

6Y6T