Unicode Finder

"澘" U+6F98(CJK UNIFIED IDEOGRAPH-6F98)

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

Programming

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

Web

CSS
\006F98
HtmlDecimal
澘
HtmlHexadecimal
澘
Url
%E6%BE%98

Code

MD5
73d7616cb2470b379b3b3966f635eb5b
Sha1
57f58cd7ed52fe741bdc2c43e9e357c9f3f6682e
Base64
5r6Y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F98';
console.log(char);  // Output: 澘

Java:

char c = '\u6F98';
System.out.println(c);  // Output: 澘

JSON:

{"text": "\u6F98"}  // Value: 澘

Python:

char = '\u6F98'
print(char)  # Output: 澘

Perl:

my $char = "\x{6F98}";
print $char;  # Output: 澘

PHP:

$char = "\x{6F98}";
echo $char;  // Output: 澘

Ruby:

char = "\u{6F98}"
puts char  # Output: 澘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28568;</p>  <!-- Display: 澘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F98;</p>  <!-- Display: 澘 -->

URL Encoding:

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

Encodings

MD5:

73d7616cb2470b379b3b3966f635eb5b

SHA1:

57f58cd7ed52fe741bdc2c43e9e357c9f3f6682e

Base64:

5r6Y