Unicode Finder

"瀌" U+700C(CJK UNIFIED IDEOGRAPH-700C)

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

Programming

C
\u700C
JavaScript
\u700C
Java
\u700C
Json
\u700C
Python
\u700C
Perl
\x{700C}
PHP
\x{700C}
Ruby
\u{700C}
Rust
\u{700C}
Go
\u700C

Web

CSS
\00700C
HtmlDecimal
瀌
HtmlHexadecimal
瀌
Url
%E7%80%8C

Code

MD5
8815c99db6f83f8ae543083f70b627ce
Sha1
cd0ac2cd93d8db75f7e6e1a78a660eeaa78ed5e9
Base64
54CM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u700C';
console.log(char);  // Output: 瀌

Java:

char c = '\u700C';
System.out.println(c);  // Output: 瀌

JSON:

{"text": "\u700C"}  // Value: 瀌

Python:

char = '\u700C'
print(char)  # Output: 瀌

Perl:

my $char = "\x{700C}";
print $char;  # Output: 瀌

PHP:

$char = "\x{700C}";
echo $char;  // Output: 瀌

Ruby:

char = "\u{700C}"
puts char  # Output: 瀌

Rust:

let c = '\u{700C}';
println!("{}", c);  // Output: 瀌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00700C";  /* Display: 瀌 */
}

HTML Decimal:

<p>HTML decimal: &#28684;</p>  <!-- Display: 瀌 -->

HTML Hexadecimal:

<p>HTML hex: &#x700C;</p>  <!-- Display: 瀌 -->

URL Encoding:

// 瀌 URL encoding
https://unicodefinder.com/search.php?query=%E7%80%8C

Encodings

MD5:

8815c99db6f83f8ae543083f70b627ce

SHA1:

cd0ac2cd93d8db75f7e6e1a78a660eeaa78ed5e9

Base64:

54CM