Unicode Finder

"爕" U+7215(CJK UNIFIED IDEOGRAPH-7215)

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

Programming

C
\u7215
JavaScript
\u7215
Java
\u7215
Json
\u7215
Python
\u7215
Perl
\x{7215}
PHP
\x{7215}
Ruby
\u{7215}
Rust
\u{7215}
Go
\u7215

Web

CSS
\007215
HtmlDecimal
爕
HtmlHexadecimal
爕
Url
%E7%88%95

Code

MD5
4ca219919773aabed2ed3b2676f345a2
Sha1
77740e51f71cdd0019b0193e1b63a9571477b371
Base64
54iV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7215';
console.log(char);  // Output: 爕

Java:

char c = '\u7215';
System.out.println(c);  // Output: 爕

JSON:

{"text": "\u7215"}  // Value: 爕

Python:

char = '\u7215'
print(char)  # Output: 爕

Perl:

my $char = "\x{7215}";
print $char;  # Output: 爕

PHP:

$char = "\x{7215}";
echo $char;  // Output: 爕

Ruby:

char = "\u{7215}"
puts char  # Output: 爕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007215";  /* Display: 爕 */
}

HTML Decimal:

<p>HTML decimal: &#29205;</p>  <!-- Display: 爕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7215;</p>  <!-- Display: 爕 -->

URL Encoding:

// 爕 URL encoding
https://unicodefinder.com/search.php?query=%E7%88%95

Encodings

MD5:

4ca219919773aabed2ed3b2676f345a2

SHA1:

77740e51f71cdd0019b0193e1b63a9571477b371

Base64:

54iV