Unicode Finder

"沫" U+6CAB(CJK UNIFIED IDEOGRAPH-6CAB)

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

Programming

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

Web

CSS
\006CAB
HtmlDecimal
沫
HtmlHexadecimal
沫
Url
%E6%B2%AB

Code

MD5
a5e6b5eebe60abc12da7b839cb540203
Sha1
916bb3306e4a69778fd157074dc11a071f3759ba
Base64
5rKr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6CAB';
console.log(char);  // Output: 沫

Java:

char c = '\u6CAB';
System.out.println(c);  // Output: 沫

JSON:

{"text": "\u6CAB"}  // Value: 沫

Python:

char = '\u6CAB'
print(char)  # Output: 沫

Perl:

my $char = "\x{6CAB}";
print $char;  # Output: 沫

PHP:

$char = "\x{6CAB}";
echo $char;  // Output: 沫

Ruby:

char = "\u{6CAB}"
puts char  # Output: 沫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27819;</p>  <!-- Display: 沫 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CAB;</p>  <!-- Display: 沫 -->

URL Encoding:

// 沫 URL encoding
https://unicodefinder.com/search.php?query=%E6%B2%AB

Encodings

MD5:

a5e6b5eebe60abc12da7b839cb540203

SHA1:

916bb3306e4a69778fd157074dc11a071f3759ba

Base64:

5rKr