Unicode Finder

"爷" U+7237(CJK UNIFIED IDEOGRAPH-7237)

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

Programming

C
\u7237
JavaScript
\u7237
Java
\u7237
Json
\u7237
Python
\u7237
Perl
\x{7237}
PHP
\x{7237}
Ruby
\u{7237}
Rust
\u{7237}
Go
\u7237

Web

CSS
\007237
HtmlDecimal
爷
HtmlHexadecimal
爷
Url
%E7%88%B7

Code

MD5
cc607188efae41fc452a2f7d8fd82ca4
Sha1
7bedcf1b9c02f608727fa5b39fa1be909fb0b548
Base64
54i3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7237';
console.log(char);  // Output: 爷

Java:

char c = '\u7237';
System.out.println(c);  // Output: 爷

JSON:

{"text": "\u7237"}  // Value: 爷

Python:

char = '\u7237'
print(char)  # Output: 爷

Perl:

my $char = "\x{7237}";
print $char;  # Output: 爷

PHP:

$char = "\x{7237}";
echo $char;  // Output: 爷

Ruby:

char = "\u{7237}"
puts char  # Output: 爷

Rust:

let c = '\u{7237}';
println!("{}", c);  // Output: 爷

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007237";  /* Display: 爷 */
}

HTML Decimal:

<p>HTML decimal: &#29239;</p>  <!-- Display: 爷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7237;</p>  <!-- Display: 爷 -->

URL Encoding:

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

Encodings

MD5:

cc607188efae41fc452a2f7d8fd82ca4

SHA1:

7bedcf1b9c02f608727fa5b39fa1be909fb0b548

Base64:

54i3