Unicode Finder

"澞" U+6F9E(CJK UNIFIED IDEOGRAPH-6F9E)

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

Programming

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

Web

CSS
\006F9E
HtmlDecimal
澞
HtmlHexadecimal
澞
Url
%E6%BE%9E

Code

MD5
fd6cf7a70d50a12518d5b48d6c8e4de8
Sha1
03f65e91b2db1ddd84be500073ea747b66c0e8ed
Base64
5r6e

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F9E';
console.log(char);  // Output: 澞

Java:

char c = '\u6F9E';
System.out.println(c);  // Output: 澞

JSON:

{"text": "\u6F9E"}  // Value: 澞

Python:

char = '\u6F9E'
print(char)  # Output: 澞

Perl:

my $char = "\x{6F9E}";
print $char;  # Output: 澞

PHP:

$char = "\x{6F9E}";
echo $char;  // Output: 澞

Ruby:

char = "\u{6F9E}"
puts char  # Output: 澞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28574;</p>  <!-- Display: 澞 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F9E;</p>  <!-- Display: 澞 -->

URL Encoding:

// 澞 URL encoding
https://unicodefinder.com/search.php?query=%E6%BE%9E

Encodings

MD5:

fd6cf7a70d50a12518d5b48d6c8e4de8

SHA1:

03f65e91b2db1ddd84be500073ea747b66c0e8ed

Base64:

5r6e