Unicode Finder

"氨" U+6C28(CJK UNIFIED IDEOGRAPH-6C28)

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

Programming

C
\u6C28
JavaScript
\u6C28
Java
\u6C28
Json
\u6C28
Python
\u6C28
Perl
\x{6C28}
PHP
\x{6C28}
Ruby
\u{6C28}
Rust
\u{6C28}
Go
\u6C28

Web

CSS
\006C28
HtmlDecimal
氨
HtmlHexadecimal
氨
Url
%E6%B0%A8

Code

MD5
3561be920c59d026a7115ba807d08f35
Sha1
a1c3904b80a6d9400312c6af9257a44d62ed859b
Base64
5rCo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C28';
console.log(char);  // Output: 氨

Java:

char c = '\u6C28';
System.out.println(c);  // Output: 氨

JSON:

{"text": "\u6C28"}  // Value: 氨

Python:

char = '\u6C28'
print(char)  # Output: 氨

Perl:

my $char = "\x{6C28}";
print $char;  # Output: 氨

PHP:

$char = "\x{6C28}";
echo $char;  // Output: 氨

Ruby:

char = "\u{6C28}"
puts char  # Output: 氨

Rust:

let c = '\u{6C28}';
println!("{}", c);  // Output: 氨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006C28";  /* Display: 氨 */
}

HTML Decimal:

<p>HTML decimal: &#27688;</p>  <!-- Display: 氨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C28;</p>  <!-- Display: 氨 -->

URL Encoding:

// 氨 URL encoding
https://unicodefinder.com/search.php?query=%E6%B0%A8

Encodings

MD5:

3561be920c59d026a7115ba807d08f35

SHA1:

a1c3904b80a6d9400312c6af9257a44d62ed859b

Base64:

5rCo