Unicode Finder

"澯" U+6FAF(CJK UNIFIED IDEOGRAPH-6FAF)

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

Programming

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

Web

CSS
\006FAF
HtmlDecimal
澯
HtmlHexadecimal
澯
Url
%E6%BE%AF

Code

MD5
54af5cf40fde125057c247c699d55c68
Sha1
4de8d61c61f39f237574b878cb9fb3d632a9aae0
Base64
5r6v

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FAF';
console.log(char);  // Output: 澯

Java:

char c = '\u6FAF';
System.out.println(c);  // Output: 澯

JSON:

{"text": "\u6FAF"}  // Value: 澯

Python:

char = '\u6FAF'
print(char)  # Output: 澯

Perl:

my $char = "\x{6FAF}";
print $char;  # Output: 澯

PHP:

$char = "\x{6FAF}";
echo $char;  // Output: 澯

Ruby:

char = "\u{6FAF}"
puts char  # Output: 澯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28591;</p>  <!-- Display: 澯 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FAF;</p>  <!-- Display: 澯 -->

URL Encoding:

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

Encodings

MD5:

54af5cf40fde125057c247c699d55c68

SHA1:

4de8d61c61f39f237574b878cb9fb3d632a9aae0

Base64:

5r6v