Unicode Finder

"熝" U+719D(CJK UNIFIED IDEOGRAPH-719D)

U+719D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-719D

Programming

C
\u719D
JavaScript
\u719D
Java
\u719D
Json
\u719D
Python
\u719D
Perl
\x{719D}
PHP
\x{719D}
Ruby
\u{719D}
Rust
\u{719D}
Go
\u719D

Web

CSS
\00719D
HtmlDecimal
熝
HtmlHexadecimal
熝
Url
%E7%86%9D

Code

MD5
cf9420770799e67d6608687d9e10daaf
Sha1
82a5c431737aa12f239bd66aebd6bcf4b0295de5
Base64
54ad

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u719D';
console.log(char);  // Output: 熝

Java:

char c = '\u719D';
System.out.println(c);  // Output: 熝

JSON:

{"text": "\u719D"}  // Value: 熝

Python:

char = '\u719D'
print(char)  # Output: 熝

Perl:

my $char = "\x{719D}";
print $char;  # Output: 熝

PHP:

$char = "\x{719D}";
echo $char;  // Output: 熝

Ruby:

char = "\u{719D}"
puts char  # Output: 熝

Rust:

let c = '\u{719D}';
println!("{}", c);  // Output: 熝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00719D";  /* Display: 熝 */
}

HTML Decimal:

<p>HTML decimal: &#29085;</p>  <!-- Display: 熝 -->

HTML Hexadecimal:

<p>HTML hex: &#x719D;</p>  <!-- Display: 熝 -->

URL Encoding:

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

Encodings

MD5:

cf9420770799e67d6608687d9e10daaf

SHA1:

82a5c431737aa12f239bd66aebd6bcf4b0295de5

Base64:

54ad