Unicode Finder

"焙" U+7119(CJK UNIFIED IDEOGRAPH-7119)

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

Programming

C
\u7119
JavaScript
\u7119
Java
\u7119
Json
\u7119
Python
\u7119
Perl
\x{7119}
PHP
\x{7119}
Ruby
\u{7119}
Rust
\u{7119}
Go
\u7119

Web

CSS
\007119
HtmlDecimal
焙
HtmlHexadecimal
焙
Url
%E7%84%99

Code

MD5
a031e7a774016940a4ae6191ec0b8a39
Sha1
cbaa4a27ed96d375cc1d5881ff58bafbe4e5cd4c
Base64
54SZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7119';
console.log(char);  // Output: 焙

Java:

char c = '\u7119';
System.out.println(c);  // Output: 焙

JSON:

{"text": "\u7119"}  // Value: 焙

Python:

char = '\u7119'
print(char)  # Output: 焙

Perl:

my $char = "\x{7119}";
print $char;  # Output: 焙

PHP:

$char = "\x{7119}";
echo $char;  // Output: 焙

Ruby:

char = "\u{7119}"
puts char  # Output: 焙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007119";  /* Display: 焙 */
}

HTML Decimal:

<p>HTML decimal: &#28953;</p>  <!-- Display: 焙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7119;</p>  <!-- Display: 焙 -->

URL Encoding:

// 焙 URL encoding
https://unicodefinder.com/search.php?query=%E7%84%99

Encodings

MD5:

a031e7a774016940a4ae6191ec0b8a39

SHA1:

cbaa4a27ed96d375cc1d5881ff58bafbe4e5cd4c

Base64:

54SZ