Unicode Finder

"氩" U+6C29(CJK UNIFIED IDEOGRAPH-6C29)

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

Programming

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

Web

CSS
\006C29
HtmlDecimal
氩
HtmlHexadecimal
氩
Url
%E6%B0%A9

Code

MD5
55ffdcfe64570f98259c422152a9e3fa
Sha1
91da0acbac2cabfdf0d00b96928200b55c603d1f
Base64
5rCp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C29';
console.log(char);  // Output: 氩

Java:

char c = '\u6C29';
System.out.println(c);  // Output: 氩

JSON:

{"text": "\u6C29"}  // Value: 氩

Python:

char = '\u6C29'
print(char)  # Output: 氩

Perl:

my $char = "\x{6C29}";
print $char;  # Output: 氩

PHP:

$char = "\x{6C29}";
echo $char;  // Output: 氩

Ruby:

char = "\u{6C29}"
puts char  # Output: 氩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27689;</p>  <!-- Display: 氩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C29;</p>  <!-- Display: 氩 -->

URL Encoding:

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

Encodings

MD5:

55ffdcfe64570f98259c422152a9e3fa

SHA1:

91da0acbac2cabfdf0d00b96928200b55c603d1f

Base64:

5rCp