Unicode Finder

"甹" U+7539(CJK UNIFIED IDEOGRAPH-7539)

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

Programming

C
\u7539
JavaScript
\u7539
Java
\u7539
Json
\u7539
Python
\u7539
Perl
\x{7539}
PHP
\x{7539}
Ruby
\u{7539}
Rust
\u{7539}
Go
\u7539

Web

CSS
\007539
HtmlDecimal
甹
HtmlHexadecimal
甹
Url
%E7%94%B9

Code

MD5
474a4092d1af3922f7a788ad92f5cb6f
Sha1
d003ce6bbd5a0b969ed9081dbeb305acb4036712
Base64
55S5

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7539';
console.log(char);  // Output: 甹

Java:

char c = '\u7539';
System.out.println(c);  // Output: 甹

JSON:

{"text": "\u7539"}  // Value: 甹

Python:

char = '\u7539'
print(char)  # Output: 甹

Perl:

my $char = "\x{7539}";
print $char;  # Output: 甹

PHP:

$char = "\x{7539}";
echo $char;  // Output: 甹

Ruby:

char = "\u{7539}"
puts char  # Output: 甹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007539";  /* Display: 甹 */
}

HTML Decimal:

<p>HTML decimal: &#30009;</p>  <!-- Display: 甹 -->

HTML Hexadecimal:

<p>HTML hex: &#x7539;</p>  <!-- Display: 甹 -->

URL Encoding:

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

Encodings

MD5:

474a4092d1af3922f7a788ad92f5cb6f

SHA1:

d003ce6bbd5a0b969ed9081dbeb305acb4036712

Base64:

55S5