Unicode Finder

"枺" U+67BA(CJK UNIFIED IDEOGRAPH-67BA)

U+67BA
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-67BA

Programming

C
\u67BA
JavaScript
\u67BA
Java
\u67BA
Json
\u67BA
Python
\u67BA
Perl
\x{67BA}
PHP
\x{67BA}
Ruby
\u{67BA}
Rust
\u{67BA}
Go
\u67BA

Web

CSS
\0067BA
HtmlDecimal
枺
HtmlHexadecimal
枺
Url
%E6%9E%BA

Code

MD5
4c4f89a83b43b4e64bd7c3b3a5eebcbd
Sha1
727cdd22d215890b15ca50a70b69bf356af0d821
Base64
5p66

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u67BA';
console.log(char);  // Output: 枺

Java:

char c = '\u67BA';
System.out.println(c);  // Output: 枺

JSON:

{"text": "\u67BA"}  // Value: 枺

Python:

char = '\u67BA'
print(char)  # Output: 枺

Perl:

my $char = "\x{67BA}";
print $char;  # Output: 枺

PHP:

$char = "\x{67BA}";
echo $char;  // Output: 枺

Ruby:

char = "\u{67BA}"
puts char  # Output: 枺

Rust:

let c = '\u{67BA}';
println!("{}", c);  // Output: 枺

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0067BA";  /* Display: 枺 */
}

HTML Decimal:

<p>HTML decimal: &#26554;</p>  <!-- Display: 枺 -->

HTML Hexadecimal:

<p>HTML hex: &#x67BA;</p>  <!-- Display: 枺 -->

URL Encoding:

// 枺 URL encoding
https://unicodefinder.com/search.php?query=%E6%9E%BA

Encodings

MD5:

4c4f89a83b43b4e64bd7c3b3a5eebcbd

SHA1:

727cdd22d215890b15ca50a70b69bf356af0d821

Base64:

5p66