Unicode Finder

"澗" U+6F97(CJK UNIFIED IDEOGRAPH-6F97)

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

Programming

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

Web

CSS
\006F97
HtmlDecimal
澗
HtmlHexadecimal
澗
Url
%E6%BE%97

Code

MD5
2bd46b105f5451cc1d46244d899c2904
Sha1
c75d67f895541950e0268e3f2b30900333c6e785
Base64
5r6X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F97';
console.log(char);  // Output: 澗

Java:

char c = '\u6F97';
System.out.println(c);  // Output: 澗

JSON:

{"text": "\u6F97"}  // Value: 澗

Python:

char = '\u6F97'
print(char)  # Output: 澗

Perl:

my $char = "\x{6F97}";
print $char;  # Output: 澗

PHP:

$char = "\x{6F97}";
echo $char;  // Output: 澗

Ruby:

char = "\u{6F97}"
puts char  # Output: 澗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28567;</p>  <!-- Display: 澗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F97;</p>  <!-- Display: 澗 -->

URL Encoding:

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

Encodings

MD5:

2bd46b105f5451cc1d46244d899c2904

SHA1:

c75d67f895541950e0268e3f2b30900333c6e785

Base64:

5r6X