Unicode Finder

"禵" U+79B5(CJK UNIFIED IDEOGRAPH-79B5)

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

Programming

C
\u79B5
JavaScript
\u79B5
Java
\u79B5
Json
\u79B5
Python
\u79B5
Perl
\x{79B5}
PHP
\x{79B5}
Ruby
\u{79B5}
Rust
\u{79B5}
Go
\u79B5

Web

CSS
\0079B5
HtmlDecimal
禵
HtmlHexadecimal
禵
Url
%E7%A6%B5

Code

MD5
a96f41863859c89af6d9969a3deac21d
Sha1
82c30af87fc8592f82726c37c932bf6e8e140d3b
Base64
56a1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u79B5';
console.log(char);  // Output: 禵

Java:

char c = '\u79B5';
System.out.println(c);  // Output: 禵

JSON:

{"text": "\u79B5"}  // Value: 禵

Python:

char = '\u79B5'
print(char)  # Output: 禵

Perl:

my $char = "\x{79B5}";
print $char;  # Output: 禵

PHP:

$char = "\x{79B5}";
echo $char;  // Output: 禵

Ruby:

char = "\u{79B5}"
puts char  # Output: 禵

Rust:

let c = '\u{79B5}';
println!("{}", c);  // Output: 禵

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0079B5";  /* Display: 禵 */
}

HTML Decimal:

<p>HTML decimal: &#31157;</p>  <!-- Display: 禵 -->

HTML Hexadecimal:

<p>HTML hex: &#x79B5;</p>  <!-- Display: 禵 -->

URL Encoding:

// 禵 URL encoding
https://unicodefinder.com/search.php?query=%E7%A6%B5

Encodings

MD5:

a96f41863859c89af6d9969a3deac21d

SHA1:

82c30af87fc8592f82726c37c932bf6e8e140d3b

Base64:

56a1