Unicode Finder

"甸" U+7538(CJK UNIFIED IDEOGRAPH-7538)

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

Programming

C
\u7538
JavaScript
\u7538
Java
\u7538
Json
\u7538
Python
\u7538
Perl
\x{7538}
PHP
\x{7538}
Ruby
\u{7538}
Rust
\u{7538}
Go
\u7538

Web

CSS
\007538
HtmlDecimal
甸
HtmlHexadecimal
甸
Url
%E7%94%B8

Code

MD5
81cc8921825b203443030f199efba2f0
Sha1
e4ca8ef7b54107229141a5b3c481fb7a2a853616
Base64
55S4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7538';
console.log(char);  // Output: 甸

Java:

char c = '\u7538';
System.out.println(c);  // Output: 甸

JSON:

{"text": "\u7538"}  // Value: 甸

Python:

char = '\u7538'
print(char)  # Output: 甸

Perl:

my $char = "\x{7538}";
print $char;  # Output: 甸

PHP:

$char = "\x{7538}";
echo $char;  // Output: 甸

Ruby:

char = "\u{7538}"
puts char  # Output: 甸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007538";  /* Display: 甸 */
}

HTML Decimal:

<p>HTML decimal: &#30008;</p>  <!-- Display: 甸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7538;</p>  <!-- Display: 甸 -->

URL Encoding:

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

Encodings

MD5:

81cc8921825b203443030f199efba2f0

SHA1:

e4ca8ef7b54107229141a5b3c481fb7a2a853616

Base64:

55S4