Unicode Finder

"爼" U+723C(CJK UNIFIED IDEOGRAPH-723C)

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

Programming

C
\u723C
JavaScript
\u723C
Java
\u723C
Json
\u723C
Python
\u723C
Perl
\x{723C}
PHP
\x{723C}
Ruby
\u{723C}
Rust
\u{723C}
Go
\u723C

Web

CSS
\00723C
HtmlDecimal
爼
HtmlHexadecimal
爼
Url
%E7%88%BC

Code

MD5
4a61b9356a810a1d7e461941c95240c3
Sha1
646f3edbb1c6af3ce3e272c2f1084648317000a4
Base64
54i8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u723C';
console.log(char);  // Output: 爼

Java:

char c = '\u723C';
System.out.println(c);  // Output: 爼

JSON:

{"text": "\u723C"}  // Value: 爼

Python:

char = '\u723C'
print(char)  # Output: 爼

Perl:

my $char = "\x{723C}";
print $char;  # Output: 爼

PHP:

$char = "\x{723C}";
echo $char;  // Output: 爼

Ruby:

char = "\u{723C}"
puts char  # Output: 爼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29244;</p>  <!-- Display: 爼 -->

HTML Hexadecimal:

<p>HTML hex: &#x723C;</p>  <!-- Display: 爼 -->

URL Encoding:

// 爼 URL encoding
https://unicodefinder.com/search.php?query=%E7%88%BC

Encodings

MD5:

4a61b9356a810a1d7e461941c95240c3

SHA1:

646f3edbb1c6af3ce3e272c2f1084648317000a4

Base64:

54i8