Unicode Finder

"澶" U+6FB6(CJK UNIFIED IDEOGRAPH-6FB6)

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

Programming

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

Web

CSS
\006FB6
HtmlDecimal
澶
HtmlHexadecimal
澶
Url
%E6%BE%B6

Code

MD5
db189959cea652a4b14051919ab7ebea
Sha1
e1f7ce049b3622719d41bac1ca3754724f81645d
Base64
5r62

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FB6';
console.log(char);  // Output: 澶

Java:

char c = '\u6FB6';
System.out.println(c);  // Output: 澶

JSON:

{"text": "\u6FB6"}  // Value: 澶

Python:

char = '\u6FB6'
print(char)  # Output: 澶

Perl:

my $char = "\x{6FB6}";
print $char;  # Output: 澶

PHP:

$char = "\x{6FB6}";
echo $char;  // Output: 澶

Ruby:

char = "\u{6FB6}"
puts char  # Output: 澶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28598;</p>  <!-- Display: 澶 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FB6;</p>  <!-- Display: 澶 -->

URL Encoding:

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

Encodings

MD5:

db189959cea652a4b14051919ab7ebea

SHA1:

e1f7ce049b3622719d41bac1ca3754724f81645d

Base64:

5r62