Unicode Finder

"澽" U+6FBD(CJK UNIFIED IDEOGRAPH-6FBD)

U+6FBD
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6FBD

Programming

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

Web

CSS
\006FBD
HtmlDecimal
澽
HtmlHexadecimal
澽
Url
%E6%BE%BD

Code

MD5
5783fc01a8214a73002a33a256e9592e
Sha1
460101db75e57777b79786d537287a60a6fc23ae
Base64
5r69

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6FBD';
console.log(char);  // Output: 澽

Java:

char c = '\u6FBD';
System.out.println(c);  // Output: 澽

JSON:

{"text": "\u6FBD"}  // Value: 澽

Python:

char = '\u6FBD'
print(char)  # Output: 澽

Perl:

my $char = "\x{6FBD}";
print $char;  # Output: 澽

PHP:

$char = "\x{6FBD}";
echo $char;  // Output: 澽

Ruby:

char = "\u{6FBD}"
puts char  # Output: 澽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28605;</p>  <!-- Display: 澽 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FBD;</p>  <!-- Display: 澽 -->

URL Encoding:

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

Encodings

MD5:

5783fc01a8214a73002a33a256e9592e

SHA1:

460101db75e57777b79786d537287a60a6fc23ae

Base64:

5r69