Unicode Finder

"淵" U+6DF5(CJK UNIFIED IDEOGRAPH-6DF5)

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

Programming

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

Web

CSS
\006DF5
HtmlDecimal
淵
HtmlHexadecimal
淵
Url
%E6%B7%B5

Code

MD5
1465ee0f73638f35ce9134050bec8400
Sha1
53e981022bcb6b631c7ede0a6cc0953f392c780c
Base64
5re1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DF5';
console.log(char);  // Output: 淵

Java:

char c = '\u6DF5';
System.out.println(c);  // Output: 淵

JSON:

{"text": "\u6DF5"}  // Value: 淵

Python:

char = '\u6DF5'
print(char)  # Output: 淵

Perl:

my $char = "\x{6DF5}";
print $char;  # Output: 淵

PHP:

$char = "\x{6DF5}";
echo $char;  // Output: 淵

Ruby:

char = "\u{6DF5}"
puts char  # Output: 淵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28149;</p>  <!-- Display: 淵 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DF5;</p>  <!-- Display: 淵 -->

URL Encoding:

// 淵 URL encoding
https://unicodefinder.com/search.php?query=%E6%B7%B5

Encodings

MD5:

1465ee0f73638f35ce9134050bec8400

SHA1:

53e981022bcb6b631c7ede0a6cc0953f392c780c

Base64:

5re1