Unicode Finder

"烜" U+70DC(CJK UNIFIED IDEOGRAPH-70DC)

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

Programming

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

Web

CSS
\0070DC
HtmlDecimal
烜
HtmlHexadecimal
烜
Url
%E7%83%9C

Code

MD5
fb15dfdc684c9e62ced9150005d5780a
Sha1
93d646542a9d19ce0558c102e6a871488af13922
Base64
54Oc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70DC';
console.log(char);  // Output: 烜

Java:

char c = '\u70DC';
System.out.println(c);  // Output: 烜

JSON:

{"text": "\u70DC"}  // Value: 烜

Python:

char = '\u70DC'
print(char)  # Output: 烜

Perl:

my $char = "\x{70DC}";
print $char;  # Output: 烜

PHP:

$char = "\x{70DC}";
echo $char;  // Output: 烜

Ruby:

char = "\u{70DC}"
puts char  # Output: 烜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28892;</p>  <!-- Display: 烜 -->

HTML Hexadecimal:

<p>HTML hex: &#x70DC;</p>  <!-- Display: 烜 -->

URL Encoding:

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

Encodings

MD5:

fb15dfdc684c9e62ced9150005d5780a

SHA1:

93d646542a9d19ce0558c102e6a871488af13922

Base64:

54Oc