Unicode Finder

"簈" U+7C08(CJK UNIFIED IDEOGRAPH-7C08)

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

Programming

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

Web

CSS
\007C08
HtmlDecimal
簈
HtmlHexadecimal
簈
Url
%E7%B0%88

Code

MD5
1f4881d765c96903a85bebd0bf5cf548
Sha1
10bf60a9c2bc2d2847851ef7b7116b9081a6ab55
Base64
57CI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C08';
console.log(char);  // Output: 簈

Java:

char c = '\u7C08';
System.out.println(c);  // Output: 簈

JSON:

{"text": "\u7C08"}  // Value: 簈

Python:

char = '\u7C08'
print(char)  # Output: 簈

Perl:

my $char = "\x{7C08}";
print $char;  # Output: 簈

PHP:

$char = "\x{7C08}";
echo $char;  // Output: 簈

Ruby:

char = "\u{7C08}"
puts char  # Output: 簈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31752;</p>  <!-- Display: 簈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C08;</p>  <!-- Display: 簈 -->

URL Encoding:

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

Encodings

MD5:

1f4881d765c96903a85bebd0bf5cf548

SHA1:

10bf60a9c2bc2d2847851ef7b7116b9081a6ab55

Base64:

57CI