Unicode Finder

"镖" U+9556(CJK UNIFIED IDEOGRAPH-9556)

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

Programming

C
\u9556
JavaScript
\u9556
Java
\u9556
Json
\u9556
Python
\u9556
Perl
\x{9556}
PHP
\x{9556}
Ruby
\u{9556}
Rust
\u{9556}
Go
\u9556

Web

CSS
\009556
HtmlDecimal
镖
HtmlHexadecimal
镖
Url
%E9%95%96

Code

MD5
1c90d138e1e5fa40312eb44fd108b067
Sha1
7e281fc98274a14c7b89792580164418f25d92be
Base64
6ZWW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9556';
console.log(char);  // Output: 镖

Java:

char c = '\u9556';
System.out.println(c);  // Output: 镖

JSON:

{"text": "\u9556"}  // Value: 镖

Python:

char = '\u9556'
print(char)  # Output: 镖

Perl:

my $char = "\x{9556}";
print $char;  # Output: 镖

PHP:

$char = "\x{9556}";
echo $char;  // Output: 镖

Ruby:

char = "\u{9556}"
puts char  # Output: 镖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009556";  /* Display: 镖 */
}

HTML Decimal:

<p>HTML decimal: &#38230;</p>  <!-- Display: 镖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9556;</p>  <!-- Display: 镖 -->

URL Encoding:

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

Encodings

MD5:

1c90d138e1e5fa40312eb44fd108b067

SHA1:

7e281fc98274a14c7b89792580164418f25d92be

Base64:

6ZWW