Unicode Finder

"泯" U+6CEF(CJK UNIFIED IDEOGRAPH-6CEF)

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

Programming

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

Web

CSS
\006CEF
HtmlDecimal
泯
HtmlHexadecimal
泯
Url
%E6%B3%AF

Code

MD5
3dcb70c2bd9dc23c2b99b50842b6ace8
Sha1
de3fa9eccd2ffec7e80f38da34919f868aa7da71
Base64
5rOv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6CEF';
console.log(char);  // Output: 泯

Java:

char c = '\u6CEF';
System.out.println(c);  // Output: 泯

JSON:

{"text": "\u6CEF"}  // Value: 泯

Python:

char = '\u6CEF'
print(char)  # Output: 泯

Perl:

my $char = "\x{6CEF}";
print $char;  # Output: 泯

PHP:

$char = "\x{6CEF}";
echo $char;  // Output: 泯

Ruby:

char = "\u{6CEF}"
puts char  # Output: 泯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27887;</p>  <!-- Display: 泯 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CEF;</p>  <!-- Display: 泯 -->

URL Encoding:

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

Encodings

MD5:

3dcb70c2bd9dc23c2b99b50842b6ace8

SHA1:

de3fa9eccd2ffec7e80f38da34919f868aa7da71

Base64:

5rOv