Unicode Finder

"烝" U+70DD(CJK UNIFIED IDEOGRAPH-70DD)

U+70DD
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-70DD

Programming

C
\u70DD
JavaScript
\u70DD
Java
\u70DD
Json
\u70DD
Python
\u70DD
Perl
\x{70DD}
PHP
\x{70DD}
Ruby
\u{70DD}
Rust
\u{70DD}
Go
\u70DD

Web

CSS
\0070DD
HtmlDecimal
烝
HtmlHexadecimal
烝
Url
%E7%83%9D

Code

MD5
7801a4bb13c0105fdfd10df3989f66d0
Sha1
7b3a5d85ecde722dae7884c10a8fb96f35b8b664
Base64
54Od

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70DD';
console.log(char);  // Output: 烝

Java:

char c = '\u70DD';
System.out.println(c);  // Output: 烝

JSON:

{"text": "\u70DD"}  // Value: 烝

Python:

char = '\u70DD'
print(char)  # Output: 烝

Perl:

my $char = "\x{70DD}";
print $char;  # Output: 烝

PHP:

$char = "\x{70DD}";
echo $char;  // Output: 烝

Ruby:

char = "\u{70DD}"
puts char  # Output: 烝

Rust:

let c = '\u{70DD}';
println!("{}", c);  // Output: 烝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0070DD";  /* Display: 烝 */
}

HTML Decimal:

<p>HTML decimal: &#28893;</p>  <!-- Display: 烝 -->

HTML Hexadecimal:

<p>HTML hex: &#x70DD;</p>  <!-- Display: 烝 -->

URL Encoding:

// 烝 URL encoding
https://unicodefinder.com/search.php?query=%E7%83%9D

Encodings

MD5:

7801a4bb13c0105fdfd10df3989f66d0

SHA1:

7b3a5d85ecde722dae7884c10a8fb96f35b8b664

Base64:

54Od