Unicode Finder

"爌" U+720C(CJK UNIFIED IDEOGRAPH-720C)

U+720C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-720C

Programming

C
\u720C
JavaScript
\u720C
Java
\u720C
Json
\u720C
Python
\u720C
Perl
\x{720C}
PHP
\x{720C}
Ruby
\u{720C}
Rust
\u{720C}
Go
\u720C

Web

CSS
\00720C
HtmlDecimal
爌
HtmlHexadecimal
爌
Url
%E7%88%8C

Code

MD5
2f76dffc3a9a81e6513a1d40fa78c600
Sha1
33566ed60851c9411002d68d2e53c353de6278ea
Base64
54iM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u720C';
console.log(char);  // Output: 爌

Java:

char c = '\u720C';
System.out.println(c);  // Output: 爌

JSON:

{"text": "\u720C"}  // Value: 爌

Python:

char = '\u720C'
print(char)  # Output: 爌

Perl:

my $char = "\x{720C}";
print $char;  # Output: 爌

PHP:

$char = "\x{720C}";
echo $char;  // Output: 爌

Ruby:

char = "\u{720C}"
puts char  # Output: 爌

Rust:

let c = '\u{720C}';
println!("{}", c);  // Output: 爌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00720C";  /* Display: 爌 */
}

HTML Decimal:

<p>HTML decimal: &#29196;</p>  <!-- Display: 爌 -->

HTML Hexadecimal:

<p>HTML hex: &#x720C;</p>  <!-- Display: 爌 -->

URL Encoding:

// 爌 URL encoding
https://unicodefinder.com/search.php?query=%E7%88%8C

Encodings

MD5:

2f76dffc3a9a81e6513a1d40fa78c600

SHA1:

33566ed60851c9411002d68d2e53c353de6278ea

Base64:

54iM