Unicode Finder

"狂" U+72C2(CJK UNIFIED IDEOGRAPH-72C2)

U+72C2
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-72C2

Programming

C
\u72C2
JavaScript
\u72C2
Java
\u72C2
Json
\u72C2
Python
\u72C2
Perl
\x{72C2}
PHP
\x{72C2}
Ruby
\u{72C2}
Rust
\u{72C2}
Go
\u72C2

Web

CSS
\0072C2
HtmlDecimal
狂
HtmlHexadecimal
狂
Url
%E7%8B%82

Code

MD5
022230ebfc5860bba28fb20ed902794e
Sha1
327336c2d8f783091c9f944d7138e02e8c182468
Base64
54uC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72C2';
console.log(char);  // Output: 狂

Java:

char c = '\u72C2';
System.out.println(c);  // Output: 狂

JSON:

{"text": "\u72C2"}  // Value: 狂

Python:

char = '\u72C2'
print(char)  # Output: 狂

Perl:

my $char = "\x{72C2}";
print $char;  # Output: 狂

PHP:

$char = "\x{72C2}";
echo $char;  // Output: 狂

Ruby:

char = "\u{72C2}"
puts char  # Output: 狂

Rust:

let c = '\u{72C2}';
println!("{}", c);  // Output: 狂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0072C2";  /* Display: 狂 */
}

HTML Decimal:

<p>HTML decimal: &#29378;</p>  <!-- Display: 狂 -->

HTML Hexadecimal:

<p>HTML hex: &#x72C2;</p>  <!-- Display: 狂 -->

URL Encoding:

// 狂 URL encoding
https://unicodefinder.com/search.php?query=%E7%8B%82

Encodings

MD5:

022230ebfc5860bba28fb20ed902794e

SHA1:

327336c2d8f783091c9f944d7138e02e8c182468

Base64:

54uC