Unicode Finder

"澨" U+6FA8(CJK UNIFIED IDEOGRAPH-6FA8)

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

Programming

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

Web

CSS
\006FA8
HtmlDecimal
澨
HtmlHexadecimal
澨
Url
%E6%BE%A8

Code

MD5
07ea2da090dec6903ad9a983e8d74619
Sha1
fe1abd7f7d21074c77b2932fdeab7ed67da22459
Base64
5r6o

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FA8';
console.log(char);  // Output: 澨

Java:

char c = '\u6FA8';
System.out.println(c);  // Output: 澨

JSON:

{"text": "\u6FA8"}  // Value: 澨

Python:

char = '\u6FA8'
print(char)  # Output: 澨

Perl:

my $char = "\x{6FA8}";
print $char;  # Output: 澨

PHP:

$char = "\x{6FA8}";
echo $char;  // Output: 澨

Ruby:

char = "\u{6FA8}"
puts char  # Output: 澨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28584;</p>  <!-- Display: 澨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FA8;</p>  <!-- Display: 澨 -->

URL Encoding:

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

Encodings

MD5:

07ea2da090dec6903ad9a983e8d74619

SHA1:

fe1abd7f7d21074c77b2932fdeab7ed67da22459

Base64:

5r6o