Unicode Finder

"镘" U+9558(CJK UNIFIED IDEOGRAPH-9558)

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

Programming

C
\u9558
JavaScript
\u9558
Java
\u9558
Json
\u9558
Python
\u9558
Perl
\x{9558}
PHP
\x{9558}
Ruby
\u{9558}
Rust
\u{9558}
Go
\u9558

Web

CSS
\009558
HtmlDecimal
镘
HtmlHexadecimal
镘
Url
%E9%95%98

Code

MD5
c6d10c000d19cc6c8c2fd908334dffe8
Sha1
4d88dabd8e6ecff38204c41e7ad4c195f842398d
Base64
6ZWY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9558';
console.log(char);  // Output: 镘

Java:

char c = '\u9558';
System.out.println(c);  // Output: 镘

JSON:

{"text": "\u9558"}  // Value: 镘

Python:

char = '\u9558'
print(char)  # Output: 镘

Perl:

my $char = "\x{9558}";
print $char;  # Output: 镘

PHP:

$char = "\x{9558}";
echo $char;  // Output: 镘

Ruby:

char = "\u{9558}"
puts char  # Output: 镘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009558";  /* Display: 镘 */
}

HTML Decimal:

<p>HTML decimal: &#38232;</p>  <!-- Display: 镘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9558;</p>  <!-- Display: 镘 -->

URL Encoding:

// 镘 URL encoding
https://unicodefinder.com/search.php?query=%E9%95%98

Encodings

MD5:

c6d10c000d19cc6c8c2fd908334dffe8

SHA1:

4d88dabd8e6ecff38204c41e7ad4c195f842398d

Base64:

6ZWY