Unicode Finder

"狷" U+72F7(CJK UNIFIED IDEOGRAPH-72F7)

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

Programming

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

Web

CSS
\0072F7
HtmlDecimal
狷
HtmlHexadecimal
狷
Url
%E7%8B%B7

Code

MD5
6e2358e9e612e4963d0ea31eda9fc71b
Sha1
ecfea921d3cf3c743db5ede65f84c05b1ef3feac
Base64
54u3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72F7';
console.log(char);  // Output: 狷

Java:

char c = '\u72F7';
System.out.println(c);  // Output: 狷

JSON:

{"text": "\u72F7"}  // Value: 狷

Python:

char = '\u72F7'
print(char)  # Output: 狷

Perl:

my $char = "\x{72F7}";
print $char;  # Output: 狷

PHP:

$char = "\x{72F7}";
echo $char;  // Output: 狷

Ruby:

char = "\u{72F7}"
puts char  # Output: 狷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29431;</p>  <!-- Display: 狷 -->

HTML Hexadecimal:

<p>HTML hex: &#x72F7;</p>  <!-- Display: 狷 -->

URL Encoding:

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

Encodings

MD5:

6e2358e9e612e4963d0ea31eda9fc71b

SHA1:

ecfea921d3cf3c743db5ede65f84c05b1ef3feac

Base64:

54u3