Unicode Finder

"伈" U+4F08(CJK UNIFIED IDEOGRAPH-4F08)

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

Programming

C
\u4F08
JavaScript
\u4F08
Java
\u4F08
Json
\u4F08
Python
\u4F08
Perl
\x{4F08}
PHP
\x{4F08}
Ruby
\u{4F08}
Rust
\u{4F08}
Go
\u4F08

Web

CSS
\004F08
HtmlDecimal
伈
HtmlHexadecimal
伈
Url
%E4%BC%88

Code

MD5
7e04229afc2c59a19dd5e679a489759c
Sha1
bfe763aa0b9521cb7a519ec72482240a874e4241
Base64
5LyI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F08';
console.log(char);  // Output: 伈

Java:

char c = '\u4F08';
System.out.println(c);  // Output: 伈

JSON:

{"text": "\u4F08"}  // Value: 伈

Python:

char = '\u4F08'
print(char)  # Output: 伈

Perl:

my $char = "\x{4F08}";
print $char;  # Output: 伈

PHP:

$char = "\x{4F08}";
echo $char;  // Output: 伈

Ruby:

char = "\u{4F08}"
puts char  # Output: 伈

Rust:

let c = '\u{4F08}';
println!("{}", c);  // Output: 伈

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F08";  /* Display: 伈 */
}

HTML Decimal:

<p>HTML decimal: &#20232;</p>  <!-- Display: 伈 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F08;</p>  <!-- Display: 伈 -->

URL Encoding:

// 伈 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%88

Encodings

MD5:

7e04229afc2c59a19dd5e679a489759c

SHA1:

bfe763aa0b9521cb7a519ec72482240a874e4241

Base64:

5LyI