Unicode Finder

"瀕" U+7015(CJK UNIFIED IDEOGRAPH-7015)

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

Programming

C
\u7015
JavaScript
\u7015
Java
\u7015
Json
\u7015
Python
\u7015
Perl
\x{7015}
PHP
\x{7015}
Ruby
\u{7015}
Rust
\u{7015}
Go
\u7015

Web

CSS
\007015
HtmlDecimal
瀕
HtmlHexadecimal
瀕
Url
%E7%80%95

Code

MD5
9b3b1d80b07feb59cf1d8e2661f24a65
Sha1
c07975ffc734b5b687767dd52aeac9a5fb1decbe
Base64
54CV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7015';
console.log(char);  // Output: 瀕

Java:

char c = '\u7015';
System.out.println(c);  // Output: 瀕

JSON:

{"text": "\u7015"}  // Value: 瀕

Python:

char = '\u7015'
print(char)  # Output: 瀕

Perl:

my $char = "\x{7015}";
print $char;  # Output: 瀕

PHP:

$char = "\x{7015}";
echo $char;  // Output: 瀕

Ruby:

char = "\u{7015}"
puts char  # Output: 瀕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007015";  /* Display: 瀕 */
}

HTML Decimal:

<p>HTML decimal: &#28693;</p>  <!-- Display: 瀕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7015;</p>  <!-- Display: 瀕 -->

URL Encoding:

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

Encodings

MD5:

9b3b1d80b07feb59cf1d8e2661f24a65

SHA1:

c07975ffc734b5b687767dd52aeac9a5fb1decbe

Base64:

54CV