Unicode Finder

"濩" U+6FE9(CJK UNIFIED IDEOGRAPH-6FE9)

U+6FE9
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6FE9

Programming

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

Web

CSS
\006FE9
HtmlDecimal
濩
HtmlHexadecimal
濩
Url
%E6%BF%A9

Code

MD5
e2dca9cb6375a6a467a8376ed29ff1b0
Sha1
e689787003d8756cb96f81ce5b9168f791b8e8ce
Base64
5r+p

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FE9';
console.log(char);  // Output: 濩

Java:

char c = '\u6FE9';
System.out.println(c);  // Output: 濩

JSON:

{"text": "\u6FE9"}  // Value: 濩

Python:

char = '\u6FE9'
print(char)  # Output: 濩

Perl:

my $char = "\x{6FE9}";
print $char;  # Output: 濩

PHP:

$char = "\x{6FE9}";
echo $char;  // Output: 濩

Ruby:

char = "\u{6FE9}"
puts char  # Output: 濩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28649;</p>  <!-- Display: 濩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FE9;</p>  <!-- Display: 濩 -->

URL Encoding:

// 濩 URL encoding
https://unicodefinder.com/search.php?query=%E6%BF%A9

Encodings

MD5:

e2dca9cb6375a6a467a8376ed29ff1b0

SHA1:

e689787003d8756cb96f81ce5b9168f791b8e8ce

Base64:

5r+p