Unicode Finder

"氢" U+6C22(CJK UNIFIED IDEOGRAPH-6C22)

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

Programming

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

Web

CSS
\006C22
HtmlDecimal
氢
HtmlHexadecimal
氢
Url
%E6%B0%A2

Code

MD5
28cf35036d0b971df5fd0fe980df29e4
Sha1
d120b080da8066ef4087cfd722da8fe77f97b615
Base64
5rCi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C22';
console.log(char);  // Output: 氢

Java:

char c = '\u6C22';
System.out.println(c);  // Output: 氢

JSON:

{"text": "\u6C22"}  // Value: 氢

Python:

char = '\u6C22'
print(char)  # Output: 氢

Perl:

my $char = "\x{6C22}";
print $char;  # Output: 氢

PHP:

$char = "\x{6C22}";
echo $char;  // Output: 氢

Ruby:

char = "\u{6C22}"
puts char  # Output: 氢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27682;</p>  <!-- Display: 氢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C22;</p>  <!-- Display: 氢 -->

URL Encoding:

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

Encodings

MD5:

28cf35036d0b971df5fd0fe980df29e4

SHA1:

d120b080da8066ef4087cfd722da8fe77f97b615

Base64:

5rCi