Unicode Finder

"鋙" U+92D9(CJK UNIFIED IDEOGRAPH-92D9)

U+92D9
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-92D9

Programming

C
\u92D9
JavaScript
\u92D9
Java
\u92D9
Json
\u92D9
Python
\u92D9
Perl
\x{92D9}
PHP
\x{92D9}
Ruby
\u{92D9}
Rust
\u{92D9}
Go
\u92D9

Web

CSS
\0092D9
HtmlDecimal
鋙
HtmlHexadecimal
鋙
Url
%E9%8B%99

Code

MD5
25190e91977366d1123386b7bfd6d98d
Sha1
ad02b41b3e7387c4592ee1e25babff2f98136673
Base64
6YuZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u92D9';
console.log(char);  // Output: 鋙

Java:

char c = '\u92D9';
System.out.println(c);  // Output: 鋙

JSON:

{"text": "\u92D9"}  // Value: 鋙

Python:

char = '\u92D9'
print(char)  # Output: 鋙

Perl:

my $char = "\x{92D9}";
print $char;  # Output: 鋙

PHP:

$char = "\x{92D9}";
echo $char;  // Output: 鋙

Ruby:

char = "\u{92D9}"
puts char  # Output: 鋙

Rust:

let c = '\u{92D9}';
println!("{}", c);  // Output: 鋙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0092D9";  /* Display: 鋙 */
}

HTML Decimal:

<p>HTML decimal: &#37593;</p>  <!-- Display: 鋙 -->

HTML Hexadecimal:

<p>HTML hex: &#x92D9;</p>  <!-- Display: 鋙 -->

URL Encoding:

// 鋙 URL encoding
https://unicodefinder.com/search.php?query=%E9%8B%99

Encodings

MD5:

25190e91977366d1123386b7bfd6d98d

SHA1:

ad02b41b3e7387c4592ee1e25babff2f98136673

Base64:

6YuZ