Unicode Finder

"褔" U+8914(CJK UNIFIED IDEOGRAPH-8914)

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

Programming

C
\u8914
JavaScript
\u8914
Java
\u8914
Json
\u8914
Python
\u8914
Perl
\x{8914}
PHP
\x{8914}
Ruby
\u{8914}
Rust
\u{8914}
Go
\u8914

Web

CSS
\008914
HtmlDecimal
褔
HtmlHexadecimal
褔
Url
%E8%A4%94

Code

MD5
f5add50b0ad1bc689f404b38a47a03f6
Sha1
e806f11981151e5b7073dc644083d8b2bc43691e
Base64
6KSU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8914';
console.log(char);  // Output: 褔

Java:

char c = '\u8914';
System.out.println(c);  // Output: 褔

JSON:

{"text": "\u8914"}  // Value: 褔

Python:

char = '\u8914'
print(char)  # Output: 褔

Perl:

my $char = "\x{8914}";
print $char;  # Output: 褔

PHP:

$char = "\x{8914}";
echo $char;  // Output: 褔

Ruby:

char = "\u{8914}"
puts char  # Output: 褔

Rust:

let c = '\u{8914}';
println!("{}", c);  // Output: 褔

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008914";  /* Display: 褔 */
}

HTML Decimal:

<p>HTML decimal: &#35092;</p>  <!-- Display: 褔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8914;</p>  <!-- Display: 褔 -->

URL Encoding:

// 褔 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%94

Encodings

MD5:

f5add50b0ad1bc689f404b38a47a03f6

SHA1:

e806f11981151e5b7073dc644083d8b2bc43691e

Base64:

6KSU