Unicode Finder

"濯" U+6FEF(CJK UNIFIED IDEOGRAPH-6FEF)

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

Programming

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

Web

CSS
\006FEF
HtmlDecimal
濯
HtmlHexadecimal
濯
Url
%E6%BF%AF

Code

MD5
6377f67f9175782180c9b78ee6f2fb6f
Sha1
ddc6d9325f49f2c267bcde242ec6478b4fac8121
Base64
5r+v

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FEF';
console.log(char);  // Output: 濯

Java:

char c = '\u6FEF';
System.out.println(c);  // Output: 濯

JSON:

{"text": "\u6FEF"}  // Value: 濯

Python:

char = '\u6FEF'
print(char)  # Output: 濯

Perl:

my $char = "\x{6FEF}";
print $char;  # Output: 濯

PHP:

$char = "\x{6FEF}";
echo $char;  // Output: 濯

Ruby:

char = "\u{6FEF}"
puts char  # Output: 濯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28655;</p>  <!-- Display: 濯 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FEF;</p>  <!-- Display: 濯 -->

URL Encoding:

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

Encodings

MD5:

6377f67f9175782180c9b78ee6f2fb6f

SHA1:

ddc6d9325f49f2c267bcde242ec6478b4fac8121

Base64:

5r+v