Unicode Finder

"狿" U+72FF(CJK UNIFIED IDEOGRAPH-72FF)

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

Programming

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

Web

CSS
\0072FF
HtmlDecimal
狿
HtmlHexadecimal
狿
Url
%E7%8B%BF

Code

MD5
542321fe6267787712842f598fc2eb7a
Sha1
54cd566a41b9309c49d1c953e5a0f83229ddbc22
Base64
54u/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72FF';
console.log(char);  // Output: 狿

Java:

char c = '\u72FF';
System.out.println(c);  // Output: 狿

JSON:

{"text": "\u72FF"}  // Value: 狿

Python:

char = '\u72FF'
print(char)  # Output: 狿

Perl:

my $char = "\x{72FF}";
print $char;  # Output: 狿

PHP:

$char = "\x{72FF}";
echo $char;  // Output: 狿

Ruby:

char = "\u{72FF}"
puts char  # Output: 狿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29439;</p>  <!-- Display: 狿 -->

HTML Hexadecimal:

<p>HTML hex: &#x72FF;</p>  <!-- Display: 狿 -->

URL Encoding:

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

Encodings

MD5:

542321fe6267787712842f598fc2eb7a

SHA1:

54cd566a41b9309c49d1c953e5a0f83229ddbc22

Base64:

54u/