Unicode Finder

"岳" U+5CB3(CJK UNIFIED IDEOGRAPH-5CB3)

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

Programming

C
\u5CB3
JavaScript
\u5CB3
Java
\u5CB3
Json
\u5CB3
Python
\u5CB3
Perl
\x{5CB3}
PHP
\x{5CB3}
Ruby
\u{5CB3}
Rust
\u{5CB3}
Go
\u5CB3

Web

CSS
\005CB3
HtmlDecimal
岳
HtmlHexadecimal
岳
Url
%E5%B2%B3

Code

MD5
ea5d3fd53cfb156ecbc119dc4b6306bc
Sha1
131aca5baa7f3efae5425d4ad4363d1c38db948e
Base64
5bKz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CB3';
console.log(char);  // Output: 岳

Java:

char c = '\u5CB3';
System.out.println(c);  // Output: 岳

JSON:

{"text": "\u5CB3"}  // Value: 岳

Python:

char = '\u5CB3'
print(char)  # Output: 岳

Perl:

my $char = "\x{5CB3}";
print $char;  # Output: 岳

PHP:

$char = "\x{5CB3}";
echo $char;  // Output: 岳

Ruby:

char = "\u{5CB3}"
puts char  # Output: 岳

Rust:

let c = '\u{5CB3}';
println!("{}", c);  // Output: 岳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005CB3";  /* Display: 岳 */
}

HTML Decimal:

<p>HTML decimal: &#23731;</p>  <!-- Display: 岳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CB3;</p>  <!-- Display: 岳 -->

URL Encoding:

// 岳 URL encoding
https://unicodefinder.com/search.php?query=%E5%B2%B3

Encodings

MD5:

ea5d3fd53cfb156ecbc119dc4b6306bc

SHA1:

131aca5baa7f3efae5425d4ad4363d1c38db948e

Base64:

5bKz