Unicode Finder

"簌" U+7C0C(CJK UNIFIED IDEOGRAPH-7C0C)

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

Programming

C
\u7C0C
JavaScript
\u7C0C
Java
\u7C0C
Json
\u7C0C
Python
\u7C0C
Perl
\x{7C0C}
PHP
\x{7C0C}
Ruby
\u{7C0C}
Rust
\u{7C0C}
Go
\u7C0C

Web

CSS
\007C0C
HtmlDecimal
簌
HtmlHexadecimal
簌
Url
%E7%B0%8C

Code

MD5
f39a5155f70b32ea8253a4184530160b
Sha1
20e3303f0b9de3ad0a84a083458a6181a44b98c9
Base64
57CM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C0C';
console.log(char);  // Output: 簌

Java:

char c = '\u7C0C';
System.out.println(c);  // Output: 簌

JSON:

{"text": "\u7C0C"}  // Value: 簌

Python:

char = '\u7C0C'
print(char)  # Output: 簌

Perl:

my $char = "\x{7C0C}";
print $char;  # Output: 簌

PHP:

$char = "\x{7C0C}";
echo $char;  // Output: 簌

Ruby:

char = "\u{7C0C}"
puts char  # Output: 簌

Rust:

let c = '\u{7C0C}';
println!("{}", c);  // Output: 簌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C0C";  /* Display: 簌 */
}

HTML Decimal:

<p>HTML decimal: &#31756;</p>  <!-- Display: 簌 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C0C;</p>  <!-- Display: 簌 -->

URL Encoding:

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

Encodings

MD5:

f39a5155f70b32ea8253a4184530160b

SHA1:

20e3303f0b9de3ad0a84a083458a6181a44b98c9

Base64:

57CM