Unicode Finder

"商" U+5546(CJK UNIFIED IDEOGRAPH-5546)

U+5546
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5546

Programming

C
\u5546
JavaScript
\u5546
Java
\u5546
Json
\u5546
Python
\u5546
Perl
\x{5546}
PHP
\x{5546}
Ruby
\u{5546}
Rust
\u{5546}
Go
\u5546

Web

CSS
\005546
HtmlDecimal
商
HtmlHexadecimal
商
Url
%E5%95%86

Code

MD5
85f5c20bf38089ba9663524b988c791d
Sha1
2ce413903b80f4852f0312b8c171c599ccd6b851
Base64
5ZWG

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5546';
console.log(char);  // Output: 商

Java:

char c = '\u5546';
System.out.println(c);  // Output: 商

JSON:

{"text": "\u5546"}  // Value: 商

Python:

char = '\u5546'
print(char)  # Output: 商

Perl:

my $char = "\x{5546}";
print $char;  # Output: 商

PHP:

$char = "\x{5546}";
echo $char;  // Output: 商

Ruby:

char = "\u{5546}"
puts char  # Output: 商

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005546";  /* Display: 商 */
}

HTML Decimal:

<p>HTML decimal: &#21830;</p>  <!-- Display: 商 -->

HTML Hexadecimal:

<p>HTML hex: &#x5546;</p>  <!-- Display: 商 -->

URL Encoding:

// 商 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%86

Encodings

MD5:

85f5c20bf38089ba9663524b988c791d

SHA1:

2ce413903b80f4852f0312b8c171c599ccd6b851

Base64:

5ZWG