Unicode Finder

"費" U+8CBB(CJK UNIFIED IDEOGRAPH-8CBB)

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

Programming

C
\u8CBB
JavaScript
\u8CBB
Java
\u8CBB
Json
\u8CBB
Python
\u8CBB
Perl
\x{8CBB}
PHP
\x{8CBB}
Ruby
\u{8CBB}
Rust
\u{8CBB}
Go
\u8CBB

Web

CSS
\008CBB
HtmlDecimal
費
HtmlHexadecimal
費
Url
%E8%B2%BB

Code

MD5
bded792396492ba0a98aff4da5c008b4
Sha1
841534d30dbd8e4fdff273203e9c6a86c8607006
Base64
6LK7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CBB';
console.log(char);  // Output: 費

Java:

char c = '\u8CBB';
System.out.println(c);  // Output: 費

JSON:

{"text": "\u8CBB"}  // Value: 費

Python:

char = '\u8CBB'
print(char)  # Output: 費

Perl:

my $char = "\x{8CBB}";
print $char;  # Output: 費

PHP:

$char = "\x{8CBB}";
echo $char;  // Output: 費

Ruby:

char = "\u{8CBB}"
puts char  # Output: 費

Rust:

let c = '\u{8CBB}';
println!("{}", c);  // Output: 費

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008CBB";  /* Display: 費 */
}

HTML Decimal:

<p>HTML decimal: &#36027;</p>  <!-- Display: 費 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CBB;</p>  <!-- Display: 費 -->

URL Encoding:

// 費 URL encoding
https://unicodefinder.com/search.php?query=%E8%B2%BB

Encodings

MD5:

bded792396492ba0a98aff4da5c008b4

SHA1:

841534d30dbd8e4fdff273203e9c6a86c8607006

Base64:

6LK7