Unicode Finder

"澓" U+6F93(CJK UNIFIED IDEOGRAPH-6F93)

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

Programming

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

Web

CSS
\006F93
HtmlDecimal
澓
HtmlHexadecimal
澓
Url
%E6%BE%93

Code

MD5
baaeec139a00f9d50fd28eacee707ef5
Sha1
610c1333c90673a4fdf2e1ece52dd0af113e3d1e
Base64
5r6T

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F93';
console.log(char);  // Output: 澓

Java:

char c = '\u6F93';
System.out.println(c);  // Output: 澓

JSON:

{"text": "\u6F93"}  // Value: 澓

Python:

char = '\u6F93'
print(char)  # Output: 澓

Perl:

my $char = "\x{6F93}";
print $char;  # Output: 澓

PHP:

$char = "\x{6F93}";
echo $char;  // Output: 澓

Ruby:

char = "\u{6F93}"
puts char  # Output: 澓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28563;</p>  <!-- Display: 澓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F93;</p>  <!-- Display: 澓 -->

URL Encoding:

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

Encodings

MD5:

baaeec139a00f9d50fd28eacee707ef5

SHA1:

610c1333c90673a4fdf2e1ece52dd0af113e3d1e

Base64:

5r6T