Unicode Finder

"牒" U+7252(CJK UNIFIED IDEOGRAPH-7252)

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

Programming

C
\u7252
JavaScript
\u7252
Java
\u7252
Json
\u7252
Python
\u7252
Perl
\x{7252}
PHP
\x{7252}
Ruby
\u{7252}
Rust
\u{7252}
Go
\u7252

Web

CSS
\007252
HtmlDecimal
牒
HtmlHexadecimal
牒
Url
%E7%89%92

Code

MD5
7d30e14079748c669fe9a04d19b9f686
Sha1
c834eabbf1560e68e654d840cfbafbd38cfdc408
Base64
54mS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7252';
console.log(char);  // Output: 牒

Java:

char c = '\u7252';
System.out.println(c);  // Output: 牒

JSON:

{"text": "\u7252"}  // Value: 牒

Python:

char = '\u7252'
print(char)  # Output: 牒

Perl:

my $char = "\x{7252}";
print $char;  # Output: 牒

PHP:

$char = "\x{7252}";
echo $char;  // Output: 牒

Ruby:

char = "\u{7252}"
puts char  # Output: 牒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007252";  /* Display: 牒 */
}

HTML Decimal:

<p>HTML decimal: &#29266;</p>  <!-- Display: 牒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7252;</p>  <!-- Display: 牒 -->

URL Encoding:

// 牒 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%92

Encodings

MD5:

7d30e14079748c669fe9a04d19b9f686

SHA1:

c834eabbf1560e68e654d840cfbafbd38cfdc408

Base64:

54mS