Unicode Finder

"澍" U+6F8D(CJK UNIFIED IDEOGRAPH-6F8D)

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

Programming

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

Web

CSS
\006F8D
HtmlDecimal
澍
HtmlHexadecimal
澍
Url
%E6%BE%8D

Code

MD5
094ad95a7a30664562844e00bc6850ef
Sha1
577e781990d6b028c92a565e677e2e522940163e
Base64
5r6N

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F8D';
console.log(char);  // Output: 澍

Java:

char c = '\u6F8D';
System.out.println(c);  // Output: 澍

JSON:

{"text": "\u6F8D"}  // Value: 澍

Python:

char = '\u6F8D'
print(char)  # Output: 澍

Perl:

my $char = "\x{6F8D}";
print $char;  # Output: 澍

PHP:

$char = "\x{6F8D}";
echo $char;  // Output: 澍

Ruby:

char = "\u{6F8D}"
puts char  # Output: 澍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28557;</p>  <!-- Display: 澍 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F8D;</p>  <!-- Display: 澍 -->

URL Encoding:

// 澍 URL encoding
https://unicodefinder.com/search.php?query=%E6%BE%8D

Encodings

MD5:

094ad95a7a30664562844e00bc6850ef

SHA1:

577e781990d6b028c92a565e677e2e522940163e

Base64:

5r6N