Unicode Finder

"熛" U+719B(CJK UNIFIED IDEOGRAPH-719B)

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

Programming

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

Web

CSS
\00719B
HtmlDecimal
熛
HtmlHexadecimal
熛
Url
%E7%86%9B

Code

MD5
1a69ba6ddec5f9d1d2eac563ebc6e8e3
Sha1
aaf66e597faa9665d21f5ee785aff05f86a68100
Base64
54ab

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u719B';
console.log(char);  // Output: 熛

Java:

char c = '\u719B';
System.out.println(c);  // Output: 熛

JSON:

{"text": "\u719B"}  // Value: 熛

Python:

char = '\u719B'
print(char)  # Output: 熛

Perl:

my $char = "\x{719B}";
print $char;  # Output: 熛

PHP:

$char = "\x{719B}";
echo $char;  // Output: 熛

Ruby:

char = "\u{719B}"
puts char  # Output: 熛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29083;</p>  <!-- Display: 熛 -->

HTML Hexadecimal:

<p>HTML hex: &#x719B;</p>  <!-- Display: 熛 -->

URL Encoding:

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

Encodings

MD5:

1a69ba6ddec5f9d1d2eac563ebc6e8e3

SHA1:

aaf66e597faa9665d21f5ee785aff05f86a68100

Base64:

54ab