Unicode Finder

"父" U+7236(CJK UNIFIED IDEOGRAPH-7236)

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

Programming

C
\u7236
JavaScript
\u7236
Java
\u7236
Json
\u7236
Python
\u7236
Perl
\x{7236}
PHP
\x{7236}
Ruby
\u{7236}
Rust
\u{7236}
Go
\u7236

Web

CSS
\007236
HtmlDecimal
父
HtmlHexadecimal
父
Url
%E7%88%B6

Code

MD5
e7378bffb2f3b6278ba151df8ff6aa09
Sha1
0b27d61a0761080f2cdede7d58b300665c6ae65b
Base64
54i2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7236';
console.log(char);  // Output: 父

Java:

char c = '\u7236';
System.out.println(c);  // Output: 父

JSON:

{"text": "\u7236"}  // Value: 父

Python:

char = '\u7236'
print(char)  # Output: 父

Perl:

my $char = "\x{7236}";
print $char;  # Output: 父

PHP:

$char = "\x{7236}";
echo $char;  // Output: 父

Ruby:

char = "\u{7236}"
puts char  # Output: 父

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007236";  /* Display: 父 */
}

HTML Decimal:

<p>HTML decimal: &#29238;</p>  <!-- Display: 父 -->

HTML Hexadecimal:

<p>HTML hex: &#x7236;</p>  <!-- Display: 父 -->

URL Encoding:

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

Encodings

MD5:

e7378bffb2f3b6278ba151df8ff6aa09

SHA1:

0b27d61a0761080f2cdede7d58b300665c6ae65b

Base64:

54i2