Unicode Finder

"漋" U+6F0B(CJK UNIFIED IDEOGRAPH-6F0B)

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

Programming

C
\u6F0B
JavaScript
\u6F0B
Java
\u6F0B
Json
\u6F0B
Python
\u6F0B
Perl
\x{6F0B}
PHP
\x{6F0B}
Ruby
\u{6F0B}
Rust
\u{6F0B}
Go
\u6F0B

Web

CSS
\006F0B
HtmlDecimal
漋
HtmlHexadecimal
漋
Url
%E6%BC%8B

Code

MD5
3e2888b30769d19cffbd5971853c01ed
Sha1
6712da54e958231a7f64cfcd0b6a0249bd17f6c0
Base64
5ryL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F0B';
console.log(char);  // Output: 漋

Java:

char c = '\u6F0B';
System.out.println(c);  // Output: 漋

JSON:

{"text": "\u6F0B"}  // Value: 漋

Python:

char = '\u6F0B'
print(char)  # Output: 漋

Perl:

my $char = "\x{6F0B}";
print $char;  # Output: 漋

PHP:

$char = "\x{6F0B}";
echo $char;  // Output: 漋

Ruby:

char = "\u{6F0B}"
puts char  # Output: 漋

Rust:

let c = '\u{6F0B}';
println!("{}", c);  // Output: 漋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006F0B";  /* Display: 漋 */
}

HTML Decimal:

<p>HTML decimal: &#28427;</p>  <!-- Display: 漋 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F0B;</p>  <!-- Display: 漋 -->

URL Encoding:

// 漋 URL encoding
https://unicodefinder.com/search.php?query=%E6%BC%8B

Encodings

MD5:

3e2888b30769d19cffbd5971853c01ed

SHA1:

6712da54e958231a7f64cfcd0b6a0249bd17f6c0

Base64:

5ryL