Unicode Finder

"爸" U+7238(CJK UNIFIED IDEOGRAPH-7238)

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

Programming

C
\u7238
JavaScript
\u7238
Java
\u7238
Json
\u7238
Python
\u7238
Perl
\x{7238}
PHP
\x{7238}
Ruby
\u{7238}
Rust
\u{7238}
Go
\u7238

Web

CSS
\007238
HtmlDecimal
爸
HtmlHexadecimal
爸
Url
%E7%88%B8

Code

MD5
ab10119e3665fb71a2fab5e18f861a03
Sha1
a732e56e22fb59b8879554d3b091aa7017ad6a9f
Base64
54i4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7238';
console.log(char);  // Output: 爸

Java:

char c = '\u7238';
System.out.println(c);  // Output: 爸

JSON:

{"text": "\u7238"}  // Value: 爸

Python:

char = '\u7238'
print(char)  # Output: 爸

Perl:

my $char = "\x{7238}";
print $char;  # Output: 爸

PHP:

$char = "\x{7238}";
echo $char;  // Output: 爸

Ruby:

char = "\u{7238}"
puts char  # Output: 爸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007238";  /* Display: 爸 */
}

HTML Decimal:

<p>HTML decimal: &#29240;</p>  <!-- Display: 爸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7238;</p>  <!-- Display: 爸 -->

URL Encoding:

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

Encodings

MD5:

ab10119e3665fb71a2fab5e18f861a03

SHA1:

a732e56e22fb59b8879554d3b091aa7017ad6a9f

Base64:

54i4