Unicode Finder

"氬" U+6C2C(CJK UNIFIED IDEOGRAPH-6C2C)

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

Programming

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

Web

CSS
\006C2C
HtmlDecimal
氬
HtmlHexadecimal
氬
Url
%E6%B0%AC

Code

MD5
e4830e1f0cfd63ddfc322e3d62fb3322
Sha1
dd72d2c5b7bfd0a77f016fd5d9473e9bd15a985e
Base64
5rCs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C2C';
console.log(char);  // Output: 氬

Java:

char c = '\u6C2C';
System.out.println(c);  // Output: 氬

JSON:

{"text": "\u6C2C"}  // Value: 氬

Python:

char = '\u6C2C'
print(char)  # Output: 氬

Perl:

my $char = "\x{6C2C}";
print $char;  # Output: 氬

PHP:

$char = "\x{6C2C}";
echo $char;  // Output: 氬

Ruby:

char = "\u{6C2C}"
puts char  # Output: 氬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27692;</p>  <!-- Display: 氬 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C2C;</p>  <!-- Display: 氬 -->

URL Encoding:

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

Encodings

MD5:

e4830e1f0cfd63ddfc322e3d62fb3322

SHA1:

dd72d2c5b7bfd0a77f016fd5d9473e9bd15a985e

Base64:

5rCs