Unicode Finder

"泫" U+6CEB(CJK UNIFIED IDEOGRAPH-6CEB)

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

Programming

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

Web

CSS
\006CEB
HtmlDecimal
泫
HtmlHexadecimal
泫
Url
%E6%B3%AB

Code

MD5
bf3e54f05022915ba7ccc4927b4f06e2
Sha1
116974ec3cb4be5728ccf9905355b171e909fbea
Base64
5rOr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6CEB';
console.log(char);  // Output: 泫

Java:

char c = '\u6CEB';
System.out.println(c);  // Output: 泫

JSON:

{"text": "\u6CEB"}  // Value: 泫

Python:

char = '\u6CEB'
print(char)  # Output: 泫

Perl:

my $char = "\x{6CEB}";
print $char;  # Output: 泫

PHP:

$char = "\x{6CEB}";
echo $char;  // Output: 泫

Ruby:

char = "\u{6CEB}"
puts char  # Output: 泫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27883;</p>  <!-- Display: 泫 -->

HTML Hexadecimal:

<p>HTML hex: &#x6CEB;</p>  <!-- Display: 泫 -->

URL Encoding:

// 泫 URL encoding
https://unicodefinder.com/search.php?query=%E6%B3%AB

Encodings

MD5:

bf3e54f05022915ba7ccc4927b4f06e2

SHA1:

116974ec3cb4be5728ccf9905355b171e909fbea

Base64:

5rOr