Unicode Finder

"澃" U+6F83(CJK UNIFIED IDEOGRAPH-6F83)

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

Programming

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

Web

CSS
\006F83
HtmlDecimal
澃
HtmlHexadecimal
澃
Url
%E6%BE%83

Code

MD5
2eb074ebc406f864b115f10eb186926a
Sha1
93df2686fa86a4e0d0b8fcabc5dcbaa3e3438251
Base64
5r6D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F83';
console.log(char);  // Output: 澃

Java:

char c = '\u6F83';
System.out.println(c);  // Output: 澃

JSON:

{"text": "\u6F83"}  // Value: 澃

Python:

char = '\u6F83'
print(char)  # Output: 澃

Perl:

my $char = "\x{6F83}";
print $char;  # Output: 澃

PHP:

$char = "\x{6F83}";
echo $char;  // Output: 澃

Ruby:

char = "\u{6F83}"
puts char  # Output: 澃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28547;</p>  <!-- Display: 澃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F83;</p>  <!-- Display: 澃 -->

URL Encoding:

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

Encodings

MD5:

2eb074ebc406f864b115f10eb186926a

SHA1:

93df2686fa86a4e0d0b8fcabc5dcbaa3e3438251

Base64:

5r6D