Unicode Finder

"漱" U+6F31(CJK UNIFIED IDEOGRAPH-6F31)

U+6F31
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6F31

Programming

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

Web

CSS
\006F31
HtmlDecimal
漱
HtmlHexadecimal
漱
Url
%E6%BC%B1

Code

MD5
75f951fd3562bfc75d9005e8bd90a1eb
Sha1
4969d0f9fd8412986b1504d414499ecb88fe4b54
Base64
5ryx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F31';
console.log(char);  // Output: 漱

Java:

char c = '\u6F31';
System.out.println(c);  // Output: 漱

JSON:

{"text": "\u6F31"}  // Value: 漱

Python:

char = '\u6F31'
print(char)  # Output: 漱

Perl:

my $char = "\x{6F31}";
print $char;  # Output: 漱

PHP:

$char = "\x{6F31}";
echo $char;  // Output: 漱

Ruby:

char = "\u{6F31}"
puts char  # Output: 漱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28465;</p>  <!-- Display: 漱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F31;</p>  <!-- Display: 漱 -->

URL Encoding:

// 漱 URL encoding
https://unicodefinder.com/search.php?query=%E6%BC%B1

Encodings

MD5:

75f951fd3562bfc75d9005e8bd90a1eb

SHA1:

4969d0f9fd8412986b1504d414499ecb88fe4b54

Base64:

5ryx