Unicode Finder

"沯" U+6CAF(CJK UNIFIED IDEOGRAPH-6CAF)

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

Programming

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

Web

CSS
\006CAF
HtmlDecimal
沯
HtmlHexadecimal
沯
Url
%E6%B2%AF

Code

MD5
970cec91ad929366aeb042cd554761df
Sha1
4d4b2454bd3d7d219503a196ba47cb28d73d186f
Base64
5rKv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6CAF';
console.log(char);  // Output: 沯

Java:

char c = '\u6CAF';
System.out.println(c);  // Output: 沯

JSON:

{"text": "\u6CAF"}  // Value: 沯

Python:

char = '\u6CAF'
print(char)  # Output: 沯

Perl:

my $char = "\x{6CAF}";
print $char;  # Output: 沯

PHP:

$char = "\x{6CAF}";
echo $char;  // Output: 沯

Ruby:

char = "\u{6CAF}"
puts char  # Output: 沯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27823;</p>  <!-- Display: 沯 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CAF;</p>  <!-- Display: 沯 -->

URL Encoding:

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

Encodings

MD5:

970cec91ad929366aeb042cd554761df

SHA1:

4d4b2454bd3d7d219503a196ba47cb28d73d186f

Base64:

5rKv