Unicode Finder

"甄" U+7504(CJK UNIFIED IDEOGRAPH-7504)

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

Programming

C
\u7504
JavaScript
\u7504
Java
\u7504
Json
\u7504
Python
\u7504
Perl
\x{7504}
PHP
\x{7504}
Ruby
\u{7504}
Rust
\u{7504}
Go
\u7504

Web

CSS
\007504
HtmlDecimal
甄
HtmlHexadecimal
甄
Url
%E7%94%84

Code

MD5
b1ef2270a60e6596787d77711747d064
Sha1
d45aa3e0e175039d8135610fbc5ebcf283c17725
Base64
55SE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7504';
console.log(char);  // Output: 甄

Java:

char c = '\u7504';
System.out.println(c);  // Output: 甄

JSON:

{"text": "\u7504"}  // Value: 甄

Python:

char = '\u7504'
print(char)  # Output: 甄

Perl:

my $char = "\x{7504}";
print $char;  # Output: 甄

PHP:

$char = "\x{7504}";
echo $char;  // Output: 甄

Ruby:

char = "\u{7504}"
puts char  # Output: 甄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007504";  /* Display: 甄 */
}

HTML Decimal:

<p>HTML decimal: &#29956;</p>  <!-- Display: 甄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7504;</p>  <!-- Display: 甄 -->

URL Encoding:

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

Encodings

MD5:

b1ef2270a60e6596787d77711747d064

SHA1:

d45aa3e0e175039d8135610fbc5ebcf283c17725

Base64:

55SE