Unicode Finder

"澉" U+6F89(CJK UNIFIED IDEOGRAPH-6F89)

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

Programming

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

Web

CSS
\006F89
HtmlDecimal
澉
HtmlHexadecimal
澉
Url
%E6%BE%89

Code

MD5
2d1d537475173b51c2b2f68608a5d0b9
Sha1
c9f7caf0830fae8e2d1daeac3cf33a18c5a7a7e5
Base64
5r6J

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F89';
console.log(char);  // Output: 澉

Java:

char c = '\u6F89';
System.out.println(c);  // Output: 澉

JSON:

{"text": "\u6F89"}  // Value: 澉

Python:

char = '\u6F89'
print(char)  # Output: 澉

Perl:

my $char = "\x{6F89}";
print $char;  # Output: 澉

PHP:

$char = "\x{6F89}";
echo $char;  // Output: 澉

Ruby:

char = "\u{6F89}"
puts char  # Output: 澉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28553;</p>  <!-- Display: 澉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F89;</p>  <!-- Display: 澉 -->

URL Encoding:

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

Encodings

MD5:

2d1d537475173b51c2b2f68608a5d0b9

SHA1:

c9f7caf0830fae8e2d1daeac3cf33a18c5a7a7e5

Base64:

5r6J