Unicode Finder

"銏" U+928F(CJK UNIFIED IDEOGRAPH-928F)

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

Programming

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

Web

CSS
\00928F
HtmlDecimal
銏
HtmlHexadecimal
銏
Url
%E9%8A%8F

Code

MD5
4421691417712dff7e0ddb28cc4161e6
Sha1
1fa0e7e9abfdf8988e4cf8794977f7f568f90319
Base64
6YqP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u928F';
console.log(char);  // Output: 銏

Java:

char c = '\u928F';
System.out.println(c);  // Output: 銏

JSON:

{"text": "\u928F"}  // Value: 銏

Python:

char = '\u928F'
print(char)  # Output: 銏

Perl:

my $char = "\x{928F}";
print $char;  # Output: 銏

PHP:

$char = "\x{928F}";
echo $char;  // Output: 銏

Ruby:

char = "\u{928F}"
puts char  # Output: 銏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37519;</p>  <!-- Display: 銏 -->

HTML Hexadecimal:

<p>HTML hex: &#x928F;</p>  <!-- Display: 銏 -->

URL Encoding:

// 銏 URL encoding
https://unicodefinder.com/search.php?query=%E9%8A%8F

Encodings

MD5:

4421691417712dff7e0ddb28cc4161e6

SHA1:

1fa0e7e9abfdf8988e4cf8794977f7f568f90319

Base64:

6YqP