Unicode Finder

"犫" U+72AB(CJK UNIFIED IDEOGRAPH-72AB)

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

Programming

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

Web

CSS
\0072AB
HtmlDecimal
犫
HtmlHexadecimal
犫
Url
%E7%8A%AB

Code

MD5
97f330273da197a56594f221da0a2ceb
Sha1
f6d60c6ef27acdac39973d0b047a778fe9d415b9
Base64
54qr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72AB';
console.log(char);  // Output: 犫

Java:

char c = '\u72AB';
System.out.println(c);  // Output: 犫

JSON:

{"text": "\u72AB"}  // Value: 犫

Python:

char = '\u72AB'
print(char)  # Output: 犫

Perl:

my $char = "\x{72AB}";
print $char;  # Output: 犫

PHP:

$char = "\x{72AB}";
echo $char;  // Output: 犫

Ruby:

char = "\u{72AB}"
puts char  # Output: 犫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29355;</p>  <!-- Display: 犫 -->

HTML Hexadecimal:

<p>HTML hex: &#x72AB;</p>  <!-- Display: 犫 -->

URL Encoding:

// 犫 URL encoding
https://unicodefinder.com/search.php?query=%E7%8A%AB

Encodings

MD5:

97f330273da197a56594f221da0a2ceb

SHA1:

f6d60c6ef27acdac39973d0b047a778fe9d415b9

Base64:

54qr