Unicode Finder

"犾" U+72BE(CJK UNIFIED IDEOGRAPH-72BE)

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

Programming

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

Web

CSS
\0072BE
HtmlDecimal
犾
HtmlHexadecimal
犾
Url
%E7%8A%BE

Code

MD5
0303cb5d722c9621582f4e2b7251c301
Sha1
abf696575b3eebfb6e0e5170c11605a57947e5d1
Base64
54q+

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72BE';
console.log(char);  // Output: 犾

Java:

char c = '\u72BE';
System.out.println(c);  // Output: 犾

JSON:

{"text": "\u72BE"}  // Value: 犾

Python:

char = '\u72BE'
print(char)  # Output: 犾

Perl:

my $char = "\x{72BE}";
print $char;  # Output: 犾

PHP:

$char = "\x{72BE}";
echo $char;  // Output: 犾

Ruby:

char = "\u{72BE}"
puts char  # Output: 犾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29374;</p>  <!-- Display: 犾 -->

HTML Hexadecimal:

<p>HTML hex: &#x72BE;</p>  <!-- Display: 犾 -->

URL Encoding:

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

Encodings

MD5:

0303cb5d722c9621582f4e2b7251c301

SHA1:

abf696575b3eebfb6e0e5170c11605a57947e5d1

Base64:

54q+