Unicode Finder

"澕" U+6F95(CJK UNIFIED IDEOGRAPH-6F95)

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

Programming

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

Web

CSS
\006F95
HtmlDecimal
澕
HtmlHexadecimal
澕
Url
%E6%BE%95

Code

MD5
7da735ee6ef4951ffda83bbb207da12c
Sha1
04070acb64238daed6e2c6aedcbb8e4792e36ec8
Base64
5r6V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F95';
console.log(char);  // Output: 澕

Java:

char c = '\u6F95';
System.out.println(c);  // Output: 澕

JSON:

{"text": "\u6F95"}  // Value: 澕

Python:

char = '\u6F95'
print(char)  # Output: 澕

Perl:

my $char = "\x{6F95}";
print $char;  # Output: 澕

PHP:

$char = "\x{6F95}";
echo $char;  // Output: 澕

Ruby:

char = "\u{6F95}"
puts char  # Output: 澕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28565;</p>  <!-- Display: 澕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F95;</p>  <!-- Display: 澕 -->

URL Encoding:

// 澕 URL encoding
https://unicodefinder.com/search.php?query=%E6%BE%95

Encodings

MD5:

7da735ee6ef4951ffda83bbb207da12c

SHA1:

04070acb64238daed6e2c6aedcbb8e4792e36ec8

Base64:

5r6V