Unicode Finder

"爺" U+723A(CJK UNIFIED IDEOGRAPH-723A)

U+723A
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-723A

Programming

C
\u723A
JavaScript
\u723A
Java
\u723A
Json
\u723A
Python
\u723A
Perl
\x{723A}
PHP
\x{723A}
Ruby
\u{723A}
Rust
\u{723A}
Go
\u723A

Web

CSS
\00723A
HtmlDecimal
爺
HtmlHexadecimal
爺
Url
%E7%88%BA

Code

MD5
958b92de4db2141facd7c2dbb947673d
Sha1
b88bfb8adc541dbbf634764e714740af6dbfc2cb
Base64
54i6

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u723A';
console.log(char);  // Output: 爺

Java:

char c = '\u723A';
System.out.println(c);  // Output: 爺

JSON:

{"text": "\u723A"}  // Value: 爺

Python:

char = '\u723A'
print(char)  # Output: 爺

Perl:

my $char = "\x{723A}";
print $char;  # Output: 爺

PHP:

$char = "\x{723A}";
echo $char;  // Output: 爺

Ruby:

char = "\u{723A}"
puts char  # Output: 爺

Rust:

let c = '\u{723A}';
println!("{}", c);  // Output: 爺

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00723A";  /* Display: 爺 */
}

HTML Decimal:

<p>HTML decimal: &#29242;</p>  <!-- Display: 爺 -->

HTML Hexadecimal:

<p>HTML hex: &#x723A;</p>  <!-- Display: 爺 -->

URL Encoding:

// 爺 URL encoding
https://unicodefinder.com/search.php?query=%E7%88%BA

Encodings

MD5:

958b92de4db2141facd7c2dbb947673d

SHA1:

b88bfb8adc541dbbf634764e714740af6dbfc2cb

Base64:

54i6