Unicode Finder

"鉜" U+925C(CJK UNIFIED IDEOGRAPH-925C)

U+925C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-925C

Programming

C
\u925C
JavaScript
\u925C
Java
\u925C
Json
\u925C
Python
\u925C
Perl
\x{925C}
PHP
\x{925C}
Ruby
\u{925C}
Rust
\u{925C}
Go
\u925C

Web

CSS
\00925C
HtmlDecimal
鉜
HtmlHexadecimal
鉜
Url
%E9%89%9C

Code

MD5
5ff7c423e75170c8dda5e73e9d9bec84
Sha1
46d4bb277b8ae15d828d8a2f82aa5ca276c5d1b5
Base64
6Ymc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u925C';
console.log(char);  // Output: 鉜

Java:

char c = '\u925C';
System.out.println(c);  // Output: 鉜

JSON:

{"text": "\u925C"}  // Value: 鉜

Python:

char = '\u925C'
print(char)  # Output: 鉜

Perl:

my $char = "\x{925C}";
print $char;  # Output: 鉜

PHP:

$char = "\x{925C}";
echo $char;  // Output: 鉜

Ruby:

char = "\u{925C}"
puts char  # Output: 鉜

Rust:

let c = '\u{925C}';
println!("{}", c);  // Output: 鉜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00925C";  /* Display: 鉜 */
}

HTML Decimal:

<p>HTML decimal: &#37468;</p>  <!-- Display: 鉜 -->

HTML Hexadecimal:

<p>HTML hex: &#x925C;</p>  <!-- Display: 鉜 -->

URL Encoding:

// 鉜 URL encoding
https://unicodefinder.com/search.php?query=%E9%89%9C

Encodings

MD5:

5ff7c423e75170c8dda5e73e9d9bec84

SHA1:

46d4bb277b8ae15d828d8a2f82aa5ca276c5d1b5

Base64:

6Ymc