Unicode Finder

"狟" U+72DF(CJK UNIFIED IDEOGRAPH-72DF)

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

Programming

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

Web

CSS
\0072DF
HtmlDecimal
狟
HtmlHexadecimal
狟
Url
%E7%8B%9F

Code

MD5
96803b3c6b14192e0be3d0e111478deb
Sha1
5ad5df363f1396c351f685fa757c475578c80441
Base64
54uf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72DF';
console.log(char);  // Output: 狟

Java:

char c = '\u72DF';
System.out.println(c);  // Output: 狟

JSON:

{"text": "\u72DF"}  // Value: 狟

Python:

char = '\u72DF'
print(char)  # Output: 狟

Perl:

my $char = "\x{72DF}";
print $char;  # Output: 狟

PHP:

$char = "\x{72DF}";
echo $char;  // Output: 狟

Ruby:

char = "\u{72DF}"
puts char  # Output: 狟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29407;</p>  <!-- Display: 狟 -->

HTML Hexadecimal:

<p>HTML hex: &#x72DF;</p>  <!-- Display: 狟 -->

URL Encoding:

// 狟 URL encoding
https://unicodefinder.com/search.php?query=%E7%8B%9F

Encodings

MD5:

96803b3c6b14192e0be3d0e111478deb

SHA1:

5ad5df363f1396c351f685fa757c475578c80441

Base64:

54uf