Unicode Finder

"細" U+7D30(CJK UNIFIED IDEOGRAPH-7D30)

U+7D30
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7D30

Programming

C
\u7D30
JavaScript
\u7D30
Java
\u7D30
Json
\u7D30
Python
\u7D30
Perl
\x{7D30}
PHP
\x{7D30}
Ruby
\u{7D30}
Rust
\u{7D30}
Go
\u7D30

Web

CSS
\007D30
HtmlDecimal
細
HtmlHexadecimal
細
Url
%E7%B4%B0

Code

MD5
51a76bdae06a142a8842626f63712fa4
Sha1
a7c522dc20d520f27718e60c869f04fd470d3293
Base64
57Sw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D30';
console.log(char);  // Output: 細

Java:

char c = '\u7D30';
System.out.println(c);  // Output: 細

JSON:

{"text": "\u7D30"}  // Value: 細

Python:

char = '\u7D30'
print(char)  # Output: 細

Perl:

my $char = "\x{7D30}";
print $char;  # Output: 細

PHP:

$char = "\x{7D30}";
echo $char;  // Output: 細

Ruby:

char = "\u{7D30}"
puts char  # Output: 細

Rust:

let c = '\u{7D30}';
println!("{}", c);  // Output: 細

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007D30";  /* Display: 細 */
}

HTML Decimal:

<p>HTML decimal: &#32048;</p>  <!-- Display: 細 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D30;</p>  <!-- Display: 細 -->

URL Encoding:

// 細 URL encoding
https://unicodefinder.com/search.php?query=%E7%B4%B0

Encodings

MD5:

51a76bdae06a142a8842626f63712fa4

SHA1:

a7c522dc20d520f27718e60c869f04fd470d3293

Base64:

57Sw